0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 10:18:52 +02:00

Err, we probably want a bigger limit

This commit is contained in:
Erik Johnston 2015-05-14 13:47:16 +01:00
parent f6f902d459
commit ab78a8926e

View file

@ -952,7 +952,7 @@ class SQLBaseStore(object):
defer.returnValue({})
rows = []
N = 2
N = 200
for i in range(1 + len(events) / N):
evs = events[i*N:(i + 1)*N]
if not evs: