diff options
author | Richard van der Hoff <richard@matrix.org> | 2015-11-19 12:23:42 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2015-11-19 12:23:42 +0000 |
commit | f6e092f6cc8691d7f400a4a86daa16e8a8e3a2e6 (patch) | |
tree | 180fb301763d01ed1f9c93be89ea7a9e35bae18c | |
parent | v2 /sync: Rename the keys of the 'rooms' object to match member states (diff) | |
download | synapse-f6e092f6cc8691d7f400a4a86daa16e8a8e3a2e6.tar.xz |
Put back the 'state.events' subobject
We're keeping 'events', in case we decide to add more keys later.
-rw-r--r-- | synapse/rest/client/v2_alpha/sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py index ff4e85d2e9..88bb7ab52b 100644 --- a/synapse/rest/client/v2_alpha/sync.py +++ b/synapse/rest/client/v2_alpha/sync.py @@ -284,7 +284,7 @@ class SyncRestServlet(RestServlet): "prev_batch": room.timeline.prev_batch.to_string(), "limited": room.timeline.limited, }, - "state": serialized_state, + "state": {"events": serialized_state}, "private_user_data": {"events": private_user_data}, } |