Skip to content
Snippets Groups Projects
Commit d98edb54 authored by Erik Johnston's avatar Erik Johnston
Browse files

Ensure the serial returned by presence is always an integer

parent 9fbcf191
No related branches found
No related tags found
No related merge requests found
...@@ -859,7 +859,7 @@ class PresenceEventSource(object): ...@@ -859,7 +859,7 @@ class PresenceEventSource(object):
presence = self.hs.get_handlers().presence_handler presence = self.hs.get_handlers().presence_handler
cachemap = presence._user_cachemap cachemap = presence._user_cachemap
clock = self.clock clock = self.clock
latest_serial = None latest_serial = 0
updates = [] updates = []
# TODO(paul): use a DeferredList ? How to limit concurrency. # TODO(paul): use a DeferredList ? How to limit concurrency.
...@@ -872,8 +872,7 @@ class PresenceEventSource(object): ...@@ -872,8 +872,7 @@ class PresenceEventSource(object):
if not (yield self.is_visible(observer_user, observed_user)): if not (yield self.is_visible(observer_user, observed_user)):
continue continue
if latest_serial is None or cached.serial > latest_serial: latest_serial = max(cached.serial, latest_serial)
latest_serial = cached.serial
updates.append(cached.make_event(user=observed_user, clock=clock)) updates.append(cached.make_event(user=observed_user, clock=clock))
# TODO(paul): limit # TODO(paul): limit
...@@ -882,6 +881,7 @@ class PresenceEventSource(object): ...@@ -882,6 +881,7 @@ class PresenceEventSource(object):
if serial < from_key: if serial < from_key:
break break
latest_serial = max(cached.serial, serial)
for u in user_ids: for u in user_ids:
updates.append({ updates.append({
"type": "m.presence", "type": "m.presence",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment