From ec65ac215438e8560c3ab00ab63ebb4d46efdcb0 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 8 Apr 2024 07:39:29 +0200 Subject: [PATCH] fix 500 error --- files/routes/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/chat.py b/files/routes/chat.py index 840859d38..9bb0ec211 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -165,7 +165,7 @@ def speak(data, v): uids = set(x.user_id for x in memberships) title = f'New chat messages in "{chat.name}"' url = f'{SITE_FULL}/chat/{chat.id}' - push_notif(uids, title, None, url) + push_notif(uids, title, '', url) data = { "id": chat_message.id,