From 12fd9e441f2d01dd1629f13e02e0aabf667e825d Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 5 Nov 2024 14:27:33 -0800 Subject: [PATCH] only show storage missing for comma threes --- system/hardware/hardwared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/hardware/hardwared.py b/system/hardware/hardwared.py index 9ebb9c9d54..a579cc5eef 100755 --- a/system/hardware/hardwared.py +++ b/system/hardware/hardwared.py @@ -316,7 +316,7 @@ def hardware_thread(end_event, hw_queue) -> None: set_offroad_alert_if_changed("Offroad_TemperatureTooHigh", show_alert, extra_text=extra_text) # TODO: this should move to TICI.initialize_hardware, but we currently can't import params there - if TICI: + if TICI and HARDWARE.get_device_type() == "tici": if not os.path.isfile("/persist/comma/living-in-the-moment"): if not Path("/data/media").is_mount(): set_offroad_alert_if_changed("Offroad_StorageMissing", True)