Check the user_id for presence/typing matches origin

This commit is contained in:
Erik Johnston 2016-09-08 15:04:46 +01:00
parent 2117c409a0
commit 8b93af662d
2 changed files with 15 additions and 1 deletions

View file

@ -651,6 +651,13 @@ class PresenceHandler(object):
)
continue
if get_domain_from_id(user_id) != origin:
logger.info(
"Got presence update from %r with bad 'user_id': %r",
origin, user_id,
)
continue
presence_state = push.get("presence", None)
if not presence_state:
logger.info(