diff options
author | Erik Johnston <erik@matrix.org> | 2020-02-04 17:25:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-04 17:25:54 +0000 |
commit | 6475382d807e1fed095d1e3fbd04884799ebd612 (patch) | |
tree | f143e1b01f431cfcd1890abc68cb2602e3c8a674 /synapse/handlers/federation.py | |
parent | Update changelog (diff) | |
download | synapse-6475382d807e1fed095d1e3fbd04884799ebd612.tar.xz |
Fix detecting unknown devices from remote encrypted events. (#6848)
We were looking at the wrong event type (`m.room.encryption` vs `m.room.encrypted`). Also fixup the duplicate `EvenTypes` entries. Introduced in #6776.
Diffstat (limited to 'synapse/handlers/federation.py')
-rw-r--r-- | synapse/handlers/federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py index c86d3177e9..488200a2d1 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -752,7 +752,7 @@ class FederationHandler(BaseHandler): # For encrypted messages we check that we know about the sending device, # if we don't then we mark the device cache for that user as stale. - if event.type == EventTypes.Encryption: + if event.type == EventTypes.Encrypted: device_id = event.content.get("device_id") if device_id is not None: cached_devices = await self.store.get_cached_devices_for_user( |