Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix empty scope when having version mismatch between workers (#15774)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Velten committed Jun 14, 2023
1 parent 6291158 commit 14f9d9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/15774.bugfix
@@ -0,0 +1 @@
Fix an error when having workers of different versions running.
2 changes: 1 addition & 1 deletion synapse/types/__init__.py
Expand Up @@ -177,7 +177,7 @@ def deserialize(
user=UserID.from_string(input["user_id"]),
access_token_id=input["access_token_id"],
is_guest=input["is_guest"],
scope=set(input["scope"]),
scope=set(input.get("scope", [])),
shadow_banned=input["shadow_banned"],
device_id=input["device_id"],
app_service=appservice,
Expand Down

0 comments on commit 14f9d9b

Please sign in to comment.