diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-10-29 14:58:28 +0000 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-10-29 16:16:01 +0000 |
commit | c5a25f610ab37f020038299a7e82ebb0424396ee (patch) | |
tree | 0e51fb162802dbbcdf889d0700c1f44e89982ca9 | |
parent | oops - fix css on desktop (diff) | |
download | synapse-c5a25f610ab37f020038299a7e82ebb0424396ee.tar.xz |
Remove redundant (and incorrect) presence pagination fetching code
-rw-r--r-- | synapse/handlers/presence.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/handlers/presence.py b/synapse/handlers/presence.py index b2af09f090..4176367643 100644 --- a/synapse/handlers/presence.py +++ b/synapse/handlers/presence.py @@ -849,9 +849,6 @@ class PresenceEventSource(object): # TODO(paul): limit - updates = [(k, cachemap[k]) for k in cachemap - if to_key < cachemap[k].serial < from_key] - if updates: clock = self.clock |