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/stats.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/stats.py')
-rw-r--r-- | synapse/handlers/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/stats.py b/synapse/handlers/stats.py index 7f7d56390e..68e6edace5 100644 --- a/synapse/handlers/stats.py +++ b/synapse/handlers/stats.py @@ -286,7 +286,7 @@ class StatsHandler(StateDeltasHandler): room_state["history_visibility"] = event_content.get( "history_visibility" ) - elif typ == EventTypes.Encryption: + elif typ == EventTypes.RoomEncryption: room_state["encryption"] = event_content.get("algorithm") elif typ == EventTypes.Name: room_state["name"] = event_content.get("name") |