From f8bf6275f6dc094db93bad949d50729b4e5e136d Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Tue, 14 Jan 2025 19:54:54 +0100 Subject: [PATCH] feat(AppNames): Handle `Notifications for calendar updates` --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 0234b70..282bc43 100644 --- a/main.py +++ b/main.py @@ -63,6 +63,8 @@ def push_to_ntfy(url: str, token: str, topic: str, title: str, click = "", messa def translate_app_name(app = str): if app == "spreed": return "Talk" + elif app == "event_update_notification": + return "Calendar" else: return app