1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py
index 4be08fe7cb..59b5d497be 100644
--- a/synapse/handlers/sync.py
+++ b/synapse/handlers/sync.py
@@ -411,10 +411,10 @@ class SyncHandler:
set_tag(SynapseTags.SYNC_RESULT, bool(sync_result))
return sync_result
- async def push_rules_for_user(self, user: UserID) -> JsonDict:
+ async def push_rules_for_user(self, user: UserID) -> Dict[str, Dict[str, list]]:
user_id = user.to_string()
- rules = await self.store.get_push_rules_for_user(user_id)
- rules = format_push_rules_for_user(user, rules)
+ rules_raw = await self.store.get_push_rules_for_user(user_id)
+ rules = format_push_rules_for_user(user, rules_raw)
return rules
async def ephemeral_by_room(
|