Merge pull request #544 from matrix-org/erikj/stream_rooms

Only use room_ids if in get_room_events_stream if is_guest
This commit is contained in:
Erik Johnston 2016-02-01 15:04:57 +00:00
commit 498c2e60fd

View File

@ -316,11 +316,6 @@ class StreamStore(SQLBaseStore):
" WHERE m.user_id = ? AND m.membership = 'join'"
)
current_room_membership_args = [user_id]
if room_ids:
current_room_membership_sql += " AND m.room_id in (%s)" % (
",".join(map(lambda _: "?", room_ids))
)
current_room_membership_args = [user_id] + room_ids
# We also want to get any membership events about that user, e.g.
# invites or leave notifications.