Merge pull request from rkfg/develop

Prevent crash on pagination.
This commit is contained in:
Erik Johnston 2019-02-21 17:42:15 +00:00 committed by GitHub
commit b9d6756b14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions
changelog.d
synapse/handlers

1
changelog.d/4263.bugfix Normal file

@ -0,0 +1 @@
Prevent crash on pagination.

@ -254,7 +254,7 @@ class PaginationHandler(object):
})
state = None
if event_filter and event_filter.lazy_load_members():
if event_filter and event_filter.lazy_load_members() and len(events) > 0:
# TODO: remove redundant members
# FIXME: we also care about invite targets etc.