mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Fix empty scope when having version mismatch between workers (#15774)
This commit is contained in:
parent
629115836f
commit
14f9d9b452
1
changelog.d/15774.bugfix
Normal file
1
changelog.d/15774.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fix an error when having workers of different versions running.
|
@ -177,7 +177,7 @@ class Requester:
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user