From e18f4c6c190d5fa7112acedfee2ebda0632a39b0 Mon Sep 17 00:00:00 2001 From: vcai122 Date: Tue, 19 Nov 2024 01:28:33 -0500 Subject: [PATCH] forgot a return statement --- backend/user/notifications.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/user/notifications.py b/backend/user/notifications.py index 0241db3e..53859995 100644 --- a/backend/user/notifications.py +++ b/backend/user/notifications.py @@ -95,6 +95,7 @@ def dict(self): result = super().dict() if self.urgent: result["aps"]["interruption-level"] = "time-sensitive" + return result @staticmethod def get_client(is_dev):