LESS THAN

pull/324/head
Erik Johnston 2015-10-22 16:18:35 +01:00
parent 232beb3a3c
commit fb0fecd0b9
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ class SearchStore(SQLBaseStore):
args = []
# Make sure we don't explode because the person is in too many rooms.
if len(room_ids) > 500:
# We filter the results regardless.
if len(room_ids) < 500:
clauses.append(
"room_id IN (%s)" % (",".join(["?"] * len(room_ids)),)
)