diff --git a/sunnypilot/mads/state.py b/sunnypilot/mads/state.py index e90effffd3..82618c0ec6 100644 --- a/sunnypilot/mads/state.py +++ b/sunnypilot/mads/state.py @@ -52,7 +52,7 @@ class StateMachineBase(ABC): def add_current_alert_types(self, alert_type): if not self.selfdrive.active: - self.ss_state_machine.current_alert_types(alert_type) + self.ss_state_machine.current_alert_types.append(alert_type) class InactiveBase(StateMachineBase):