From 5e32857729fa4e1021426f3e9c3ed2c27c697d5c Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sat, 21 Mar 2026 17:22:31 +0100 Subject: [PATCH] Update flask_server.py --- AppImage/scripts/flask_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppImage/scripts/flask_server.py b/AppImage/scripts/flask_server.py index 68a39d06..826c7226 100644 --- a/AppImage/scripts/flask_server.py +++ b/AppImage/scripts/flask_server.py @@ -5412,8 +5412,8 @@ def get_hardware_info(): if any(keyword in device_class for keyword in ['VGA', 'Display', '3D']): device_type = 'Graphics Card' include_device = True - # Storage controllers - elif any(keyword in device_class for keyword in ['SATA', 'RAID', 'Mass storage', 'Non-Volatile memory']): + # Storage controllers (including SCSI/SAS HBA cards like LSI 9400-16i) + elif any(keyword in device_class for keyword in ['SATA', 'RAID', 'Mass storage', 'Non-Volatile memory', 'SCSI', 'Serial Attached SCSI', 'SAS']): device_type = 'Storage Controller' include_device = True # Network controllers