show encryption upgrade when SSSS needs upgrading
This commit is contained in:
parent
7b6a78bfb8
commit
f7dddfc1a7
1 changed files with 9 additions and 0 deletions
|
@ -143,6 +143,15 @@ export default class DeviceListener {
|
|||
}
|
||||
}
|
||||
return;
|
||||
} else if (await cli.secretStorageKeyNeedsUpgrade()) {
|
||||
// FIXME: do we a different message?
|
||||
ToastStore.sharedInstance().addOrReplaceToast({
|
||||
key: THIS_DEVICE_TOAST_KEY,
|
||||
title: _t("Encryption upgrade available"),
|
||||
icon: "verification_warning",
|
||||
props: {kind: 'upgrade_encryption'},
|
||||
component: sdk.getComponent("toasts.SetupEncryptionToast"),
|
||||
});
|
||||
} else {
|
||||
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue