mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 13:23:54 +01:00
LESS THAN
This commit is contained in:
parent
232beb3a3c
commit
fb0fecd0b9
1 changed files with 2 additions and 1 deletions
|
@ -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)),)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue