From 5208d0ab1fad62aef39159c6c8e5023cfceedfd4 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Wed, 22 Oct 2025 17:39:28 +0300 Subject: [PATCH] fix issue sending sometimes events to apprise backends. --- app/library/Notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/library/Notifications.py b/app/library/Notifications.py index 0508da7a..91a95807 100644 --- a/app/library/Notifications.py +++ b/app/library/Notifications.py @@ -449,7 +449,7 @@ class Notification(metaclass=Singleton): notify.add(t.request.url) status = await notify.async_notify( - body=ev.message or json.dumps(ev.serialize(), sort_keys=False, ensure_ascii=False), + body=ev.message or self._encoder.encode(ev.serialize()), title=ev.title or f"YTPTube Event: {ev.event}", )