mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-23 01:55:53 +03:00
Fix typo
This commit is contained in:
parent
d98edb548a
commit
0126ef7f3c
1 changed files with 1 additions and 1 deletions
|
@ -881,7 +881,7 @@ class PresenceEventSource(object):
|
||||||
if serial < from_key:
|
if serial < from_key:
|
||||||
break
|
break
|
||||||
|
|
||||||
latest_serial = max(cached.serial, serial)
|
latest_serial = max(latest_serial, serial)
|
||||||
for u in user_ids:
|
for u in user_ids:
|
||||||
updates.append({
|
updates.append({
|
||||||
"type": "m.presence",
|
"type": "m.presence",
|
||||||
|
|
Loading…
Reference in a new issue