Merge pull request #4486 from matrix-org/dbkr/correct_toast
Fix incorrect toast if security setup skipped
This commit is contained in:
commit
1c00709029
1 changed files with 5 additions and 0 deletions
|
@ -66,6 +66,9 @@ export default class DeviceListener {
|
||||||
MatrixClientPeg.get().removeListener('sync', this._onSync);
|
MatrixClientPeg.get().removeListener('sync', this._onSync);
|
||||||
}
|
}
|
||||||
this._dismissed.clear();
|
this._dismissed.clear();
|
||||||
|
this._dismissedThisDeviceToast = false;
|
||||||
|
this._keyBackupInfo = null;
|
||||||
|
this._keyBackupFetchedAt = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
dismissVerification(deviceId) {
|
dismissVerification(deviceId) {
|
||||||
|
@ -146,6 +149,8 @@ export default class DeviceListener {
|
||||||
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
||||||
} else {
|
} else {
|
||||||
if (!crossSigningReady) {
|
if (!crossSigningReady) {
|
||||||
|
// make sure our keys are finished downlaoding
|
||||||
|
await cli.downloadKeys([cli.getUserId()]);
|
||||||
// cross signing isn't enabled - nag to enable it
|
// cross signing isn't enabled - nag to enable it
|
||||||
// There are 3 different toasts for:
|
// There are 3 different toasts for:
|
||||||
if (cli.getStoredCrossSigningForUser(cli.getUserId())) {
|
if (cli.getStoredCrossSigningForUser(cli.getUserId())) {
|
||||||
|
|
Loading…
Reference in a new issue