pull/23972/head
Comma Device 2022-03-20 17:22:27 -07:00
parent 46f783ca5a
commit 843bebba5c
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ def thermald_thread(end_event, hw_queue):
try:
with open("/sys/block/nvme0n1/device/model") as f:
model = f.read().strip()
if not model.startswith("xSamsung SSD 980") and params.get("Offroad_BadNvme") is None:
if not model.startswith("Samsung SSD 980") and params.get("Offroad_BadNvme") is None:
set_offroad_alert_if_changed("Offroad_BadNvme", True)
cloudlog.event("Unsupported NVMe", model=model, error=True)
except Exception: