From 92baa56a1c0812cc3b9b22e57227cc07366d3036 Mon Sep 17 00:00:00 2001 From: Daniel Legt Date: Sun, 21 Jan 2024 19:14:34 +0200 Subject: [PATCH] Re-Added NVME --- lib/hardware/logic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hardware/logic.go b/lib/hardware/logic.go index 2bdf5af..f400987 100644 --- a/lib/hardware/logic.go +++ b/lib/hardware/logic.go @@ -42,7 +42,7 @@ func GetSystemHardDrives(db *gorm.DB, olderThan *time.Time, newerThan *time.Time } // Filter out nvme drives (M.2) - if cols[1] != "nvme" && cols[5] != "Device" && cols[1] != "usb" { + if cols[1] != "usb" { hd := &HardDrive{ Name: cols[0], Transport: cols[1],