From b7b9a55bb5dd81e8d551a18ed6bde8278fae4b09 Mon Sep 17 00:00:00 2001 From: frdel <38891707+frdel@users.noreply.github.com> Date: Tue, 14 Apr 2026 17:40:39 +0200 Subject: [PATCH] fix(update_check): initialize last_notification_id to None instead of empty string --- extensions/python/user_message_ui/_10_update_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/python/user_message_ui/_10_update_check.py b/extensions/python/user_message_ui/_10_update_check.py index 74650b9cf..5a5827923 100644 --- a/extensions/python/user_message_ui/_10_update_check.py +++ b/extensions/python/user_message_ui/_10_update_check.py @@ -12,7 +12,7 @@ import datetime last_check = datetime.datetime.fromtimestamp(0) check_cooldown_seconds = 60 -last_notification_id = "" +last_notification_id = None last_notification_time = datetime.datetime.fromtimestamp(0) notification_cooldown_seconds = 60 * 60 * 24