fix(update_check): initialize last_notification_id to None instead of empty string
frdel committed
Apr 14, 2026 at 17:40 UTC
b7b9a55bb5dd81e8d551a18ed6bde8278fae4b09
1 file changed
+1
-1
extensions/python/user_message_ui/_10_update_check.py
+1
-1
@@ -12,7 +12,7 @@ import datetime
12
13
last_check = datetime.datetime.fromtimestamp(0)
14
check_cooldown_seconds = 60
15
-last_notification_id = ""
15
+last_notification_id = None
16
last_notification_time = datetime.datetime.fromtimestamp(0)
17
notification_cooldown_seconds = 60 * 60 * 24
18