mirror of https://github.com/vector-im/riot-web
Check more account data in toast listener
Since any change to cross-signing or secret storage account data may affect the outcome of checks in the toast listener, we need to broaden the account data listener there to re-run for changes to all such bits of account data. Fixes https://github.com/vector-im/riot-web/issues/13048pull/21833/head
parent
2b6cbae4a7
commit
971c57552b
|
@ -90,8 +90,15 @@ export default class DeviceListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
_onAccountData = (ev) => {
|
_onAccountData = (ev) => {
|
||||||
// User may have migrated SSSS to symmetric, in which case we can dismiss that toast
|
// User may have:
|
||||||
if (ev.getType().startsWith('m.secret_storage.key.')) {
|
// * migrated SSSS to symmetric
|
||||||
|
// * uploaded keys to secret storage
|
||||||
|
// * completed secret storage creation
|
||||||
|
// which result in account data changes affecting checks below.
|
||||||
|
if (
|
||||||
|
ev.getType().startsWith('m.secret_storage.') ||
|
||||||
|
ev.getType().startsWith('m.cross_signing.')
|
||||||
|
) {
|
||||||
this._recheck();
|
this._recheck();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue