0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 10:18:54 +02:00

PresenceStreamData was expecting *_key to be ints

This commit is contained in:
Erik Johnston 2014-08-19 15:51:10 +01:00
parent 22dd0b37c4
commit 5c00614aab

View file

@ -689,6 +689,9 @@ class PresenceStreamData(StreamData):
self.presence = hs.get_handlers().presence_handler
def get_rows(self, user_id, from_key, to_key, limit, direction):
from_key = int(from_key)
to_key = int(to_key)
cachemap = self.presence._user_cachemap
# TODO(paul): limit, and filter by visibility