diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2020-10-06 13:26:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 13:26:29 -0400 |
commit | 3cd78bbe9e208d2e93ccebee5d3586ee5f5a5d31 (patch) | |
tree | f893c4e6a1e4129d6f79ed6cada0712ce0d545b8 /synapse/rest/client | |
parent | Additional tests for third-party event rules (#8468) (diff) | |
download | synapse-3cd78bbe9e208d2e93ccebee5d3586ee5f5a5d31.tar.xz |
Add support for MSC2732: olm fallback keys (#8312)
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v2_alpha/sync.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py index 6779df952f..2b84eb89c0 100644 --- a/synapse/rest/client/v2_alpha/sync.py +++ b/synapse/rest/client/v2_alpha/sync.py @@ -236,6 +236,7 @@ class SyncRestServlet(RestServlet): "leave": sync_result.groups.leave, }, "device_one_time_keys_count": sync_result.device_one_time_keys_count, + "org.matrix.msc2732.device_unused_fallback_key_types": sync_result.device_unused_fallback_key_types, "next_batch": await sync_result.next_batch.to_string(self.store), } |