Only use room_ids if in get_room_events_stream if is_guest

This commit is contained in:
Erik Johnston 2016-02-01 10:33:52 +00:00
parent d98a9f2583
commit ceb6b8680a

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.