mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
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/13048
This commit is contained in:
parent
2b6cbae4a7
commit
971c57552b
@ -90,8 +90,15 @@ export default class DeviceListener {
|
||||
}
|
||||
|
||||
_onAccountData = (ev) => {
|
||||
// User may have migrated SSSS to symmetric, in which case we can dismiss that toast
|
||||
if (ev.getType().startsWith('m.secret_storage.key.')) {
|
||||
// User may have:
|
||||
// * 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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user