Toby Chui 1 сар өмнө
parent
commit
9a4d64c261

+ 1 - 1
mod/middleware/SMART/smart.go

@@ -69,7 +69,7 @@ func GetSMARTData(disk string) (*SMARTData, error) {
 // Check if the path is the disk path instead of partition path
 func IsRootDisk(deviceFilePath string) bool {
 	deviceFilename := filepath.Base(deviceFilePath)
-	if !strings.HasPrefix(deviceFilename, "sd") || strings.HasPrefix(deviceFilename, "nvme") {
+	if !(strings.HasPrefix(deviceFilename, "sd") || strings.HasPrefix(deviceFilename, "nvme")) {
 		return false
 	}
 	if strings.HasPrefix(deviceFilename, "sd") && len(deviceFilename) > 3 {