diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-01-30 11:32:35 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-01-30 11:32:35 +0000 |
commit | 22dd1cde2d83a2448074816108b85d1957315236 (patch) | |
tree | eb684887203602a9b000ddfe7d02224f0fa6ecce /synapse/rest | |
parent | Update todo for the filtering on sync (diff) | |
download | synapse-22dd1cde2d83a2448074816108b85d1957315236.tar.xz |
Filter the recent events before applying the limit when doing an incremental sync with a gap
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v2_alpha/sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py index c1277d2675..46ea50d118 100644 --- a/synapse/rest/client/v2_alpha/sync.py +++ b/synapse/rest/client/v2_alpha/sync.py @@ -116,7 +116,7 @@ class SyncRestServlet(RestServlet): user.localpart, filter_id ) except: - filter = Filter({}) + filter = Filter({}) # filter = filter.apply_overrides(http_request) #if filter.matches(event): # # stuff |