mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Safer handling of incoming presence EDUs that may or maynot contain 'presence' or 'state'
This commit is contained in:
parent
7b56a7a3cb
commit
d9d6fbb085
@ -655,9 +655,19 @@ class PresenceHandler(BaseHandler):
|
|||||||
state = dict(push)
|
state = dict(push)
|
||||||
del state["user_id"]
|
del state["user_id"]
|
||||||
|
|
||||||
|
if "presence" in state:
|
||||||
|
# all is OK
|
||||||
|
pass
|
||||||
|
elif "state" in state:
|
||||||
# Legacy handling
|
# Legacy handling
|
||||||
if "presence" not in state:
|
|
||||||
state["presence"] = state["state"]
|
state["presence"] = state["state"]
|
||||||
|
else:
|
||||||
|
logger.warning("Received a presence 'push' EDU from %s without"
|
||||||
|
+ " either a 'presence' or 'state' key", origin
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if "state" in state:
|
||||||
del state["state"]
|
del state["state"]
|
||||||
|
|
||||||
if "last_active_ago" in state:
|
if "last_active_ago" in state:
|
||||||
|
Loading…
Reference in New Issue
Block a user