mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-22 15:01:13 +02:00
show encryption upgrade when SSSS needs upgrading
This commit is contained in:
parent
7b6a78bfb8
commit
f7dddfc1a7
@ -143,6 +143,15 @@ export default class DeviceListener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
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 {
|
} else {
|
||||||
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user