commit
7e0a1683e6
|
@ -1,3 +1,8 @@
|
|||
Changes in synapse v0.13.3 (2016-02-11)
|
||||
=======================================
|
||||
|
||||
* Fix bug where ``/sync`` would occasionally return events in the wrong room.
|
||||
|
||||
Changes in synapse v0.13.2 (2016-02-11)
|
||||
=======================================
|
||||
|
||||
|
|
|
@ -16,4 +16,4 @@
|
|||
""" This is a reference implementation of a Matrix home server.
|
||||
"""
|
||||
|
||||
__version__ = "0.13.2"
|
||||
__version__ = "0.13.3"
|
||||
|
|
|
@ -175,7 +175,7 @@ class StreamStore(SQLBaseStore):
|
|||
preserve_fn(self.get_room_events_stream_for_room)(
|
||||
room_id, from_key, to_key, limit, order=order,
|
||||
)
|
||||
for room_id in room_ids
|
||||
for room_id in rm_ids
|
||||
])
|
||||
results.update(dict(zip(rm_ids, res)))
|
||||
|
||||
|
|
Loading…
Reference in New Issue