diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-11-02 09:55:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 09:55:52 -0400 |
commit | c01bc5f43d1c7d0a25f397b542ced57894395519 (patch) | |
tree | 77f8fa240987be9d35564985f8defe33c5f49188 /synapse/rest | |
parent | Delete messages for hidden devices from `device_inbox` (#11199) (diff) | |
download | synapse-c01bc5f43d1c7d0a25f397b542ced57894395519.tar.xz |
Add remaining type hints to `synapse.events`. (#11098)
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/room_batch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/room_batch.py b/synapse/rest/client/room_batch.py index 99f8156ad0..ab9a743bba 100644 --- a/synapse/rest/client/room_batch.py +++ b/synapse/rest/client/room_batch.py @@ -191,7 +191,7 @@ class RoomBatchSendEventRestServlet(RestServlet): depth=inherited_depth, ) - batch_id_to_connect_to = base_insertion_event["content"][ + batch_id_to_connect_to = base_insertion_event.content[ EventContentFields.MSC2716_NEXT_BATCH_ID ] |