Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Jun 6, 2024
1 parent 2ac8a1d commit b8b24c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion synapse/handlers/e2e_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,9 @@ async def upload_keys_for_user(
device_keys = keys.get("device_keys", None)
if device_keys:
await self.device_key_uploader(
user_id, device_id, {"device_keys": device_keys}
user_id=user_id,
device_id=device_id,
keys={"device_keys": device_keys},
)

one_time_keys = keys.get("one_time_keys", None)
Expand Down

0 comments on commit b8b24c3

Please sign in to comment.