From 6eb3ec0cbcd59830ecdd50d478077077bd743e10 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Wed, 15 Jan 2025 19:11:50 +0100 Subject: [PATCH] feat(Nextcloud/AppNames): Handle 2FA approval notification --- nextcloud2ntfy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nextcloud2ntfy.py b/nextcloud2ntfy.py index bbca3f2..9f58ee3 100644 --- a/nextcloud2ntfy.py +++ b/nextcloud2ntfy.py @@ -76,6 +76,8 @@ def translate_app_name(app=str) -> str: return "Talk" elif app == "event_update_notification": return "Calendar" + elif app == "twofactor_nextcloud_notification": + return "2FA" else: return app