From 80442072160874004f9c2df3b5fcfd195edc757f Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Fri, 1 Aug 2025 21:05:28 +0000 Subject: [PATCH] Say alert is from Doormind --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 56c868c..11811d0 100644 --- a/server.py +++ b/server.py @@ -202,7 +202,7 @@ async def monitor_state_transitions(app): for threshold in OPEN_ALERT_THRESHOLDS_MINUTES: if open_duration_minutes >= threshold and threshold not in OPEN_ALERTS_SENT_FOR_CURRENT_OPENING: - msg = f"ALERT: Garage door has been open for {threshold} minutes." + msg = f"Doormind: Garage door has been open for {threshold} minutes." await controller_message(app, msg) logging.info(msg) OPEN_ALERTS_SENT_FOR_CURRENT_OPENING.append(threshold)