diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-22 22:33:23 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-22 22:33:23 -0400 |
commit | 404e8c85321b4fe9b9b74e07841367c4cf201551 (patch) | |
tree | 622a5a49d700c4455b184c5a2b5d5d9da4177e16 /synapse/storage | |
parent | fix unit test (diff) | |
download | synapse-404e8c85321b4fe9b9b74e07841367c4cf201551.tar.xz |
vendor-prefix the EDU name until MSC1756 is merged into the spec
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/devices.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/devices.py b/synapse/storage/devices.py index 1aaef1fbb0..6ac165068e 100644 --- a/synapse/storage/devices.py +++ b/synapse/storage/devices.py @@ -231,7 +231,8 @@ class DeviceWorkerStore(SQLBaseStore): # add the updated cross-signing keys to the results list for user_id, result in iteritems(cross_signing_keys_by_user): result["user_id"] = user_id - cross_signing_results.append(("m.signing_key_update", result)) + # FIXME: switch to m.signing_key_update when MSC1756 is merged into the spec + cross_signing_results.append(("org.matrix.signing_key_update", result)) # That should only happen if a client is spamming the server with new # devices, in which case E2E isn't going to work well anyway. We'll just |