From 2124ca65b2a28047e76b59da779911665dd88415 Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Wed, 29 Jul 2026 11:49:54 +0200 Subject: [PATCH] Fix of the notification subscription --- Web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/app.py b/Web/app.py index 6b53ebb..548bdf3 100755 --- a/Web/app.py +++ b/Web/app.py @@ -10424,7 +10424,7 @@ def notifications_view(): 'title': notif.get('Title', 'Benachrichtigung'), 'message': notif.get('Message', ''), 'severity': notif.get('Severity', 'info'), - 'type': notif.get('Type', '') + 'type': notif.get('Type', ''), 'created_at': created_at_val if created_at_val else None, 'is_read': is_read, 'reference': notif.get('Reference') or {},