mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 14:04:55 -04:00
Send and handle cross-signing messages using the stable prefix. (#10520)
This commit is contained in:
parent
d6fb96e056
commit
8541809cb9
4 changed files with 13 additions and 5 deletions
|
@ -274,7 +274,9 @@ class DeviceWorkerStore(SQLBaseStore):
|
|||
# add the updated cross-signing keys to the results list
|
||||
for user_id, result in cross_signing_keys_by_user.items():
|
||||
result["user_id"] = user_id
|
||||
# FIXME: switch to m.signing_key_update when MSC1756 is merged into the spec
|
||||
results.append(("m.signing_key_update", result))
|
||||
# also send the unstable version
|
||||
# FIXME: remove this when enough servers have upgraded
|
||||
results.append(("org.matrix.signing_key_update", result))
|
||||
|
||||
return now_stream_id, results
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue