2020-01-17 19:43:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-10-23 06:23:32 +08:00
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
|
|
|
2021-06-29 20:11:58 +08:00
|
|
|
import { MatrixClientPeg } from './MatrixClientPeg';
|
2020-08-19 23:13:29 +08:00
|
|
|
import dis from "./dispatcher/dispatcher";
|
2020-05-22 20:29:53 +08:00
|
|
|
import {
|
|
|
|
hideToast as hideBulkUnverifiedSessionsToast,
|
2020-06-23 23:41:36 +08:00
|
|
|
showToast as showBulkUnverifiedSessionsToast,
|
2020-05-22 20:29:53 +08:00
|
|
|
} from "./toasts/BulkUnverifiedSessionsToast";
|
|
|
|
import {
|
|
|
|
hideToast as hideSetupEncryptionToast,
|
|
|
|
Kind as SetupKind,
|
2020-06-23 23:41:36 +08:00
|
|
|
showToast as showSetupEncryptionToast,
|
2020-05-22 20:29:53 +08:00
|
|
|
} from "./toasts/SetupEncryptionToast";
|
|
|
|
import {
|
|
|
|
hideToast as hideUnverifiedSessionsToast,
|
2020-06-23 23:41:36 +08:00
|
|
|
showToast as showUnverifiedSessionsToast,
|
2020-05-22 20:29:53 +08:00
|
|
|
} from "./toasts/UnverifiedSessionToast";
|
2020-09-03 21:50:49 +08:00
|
|
|
import { isSecretStorageBeingAccessed, accessSecretStorage } from "./SecurityManager";
|
2020-08-24 23:11:35 +08:00
|
|
|
import { isSecureBackupRequired } from './utils/WellKnownUtils';
|
2020-08-19 23:13:29 +08:00
|
|
|
import { isLoggedIn } from './components/structures/MatrixChat';
|
2021-07-20 05:43:11 +08:00
|
|
|
import { ActionPayload } from "./dispatcher/payloads";
|
2020-01-17 19:43:35 +08:00
|
|
|
|
2020-01-26 00:52:12 +08:00
|
|
|
const KEY_BACKUP_POLL_INTERVAL = 5 * 60 * 1000;
|
2020-04-29 01:35:16 +08:00
|
|
|
|
2020-01-17 19:43:35 +08:00
|
|
|
export default class DeviceListener {
|
2020-08-19 23:13:29 +08:00
|
|
|
private dispatcherRef: string;
|
2020-05-22 19:54:03 +08:00
|
|
|
// device IDs for which the user has dismissed the verify toast ('Later')
|
|
|
|
private dismissed = new Set<string>();
|
|
|
|
// has the user dismissed any of the various nag toasts to setup encryption on this device?
|
|
|
|
private dismissedThisDeviceToast = false;
|
|
|
|
// cache of the key backup info
|
|
|
|
private keyBackupInfo: object = null;
|
|
|
|
private keyBackupFetchedAt: number = null;
|
|
|
|
// We keep a list of our own device IDs so we can batch ones that were already
|
|
|
|
// there the last time the app launched into a single toast, but display new
|
|
|
|
// ones in their own toasts.
|
|
|
|
private ourDeviceIdsAtStart: Set<string> = null;
|
|
|
|
// The set of device IDs we're currently displaying toasts for
|
|
|
|
private displayingToastsForDeviceIds = new Set<string>();
|
2020-01-26 00:52:12 +08:00
|
|
|
|
2020-05-22 19:54:03 +08:00
|
|
|
static sharedInstance() {
|
2020-07-21 03:43:49 +08:00
|
|
|
if (!window.mxDeviceListener) window.mxDeviceListener = new DeviceListener();
|
|
|
|
return window.mxDeviceListener;
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
2021-07-20 05:43:11 +08:00
|
|
|
MatrixClientPeg.get().on('crypto.willUpdateDevices', this.onWillUpdateDevices);
|
|
|
|
MatrixClientPeg.get().on('crypto.devicesUpdated', this.onDevicesUpdated);
|
|
|
|
MatrixClientPeg.get().on('deviceVerificationChanged', this.onDeviceVerificationChanged);
|
|
|
|
MatrixClientPeg.get().on('userTrustStatusChanged', this.onUserTrustStatusChanged);
|
|
|
|
MatrixClientPeg.get().on('crossSigning.keysChanged', this.onCrossSingingKeysChanged);
|
|
|
|
MatrixClientPeg.get().on('accountData', this.onAccountData);
|
|
|
|
MatrixClientPeg.get().on('sync', this.onSync);
|
|
|
|
MatrixClientPeg.get().on('RoomState.events', this.onRoomStateEvents);
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
|
|
this.recheck();
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
if (MatrixClientPeg.get()) {
|
2021-07-20 05:43:11 +08:00
|
|
|
MatrixClientPeg.get().removeListener('crypto.willUpdateDevices', this.onWillUpdateDevices);
|
|
|
|
MatrixClientPeg.get().removeListener('crypto.devicesUpdated', this.onDevicesUpdated);
|
|
|
|
MatrixClientPeg.get().removeListener('deviceVerificationChanged', this.onDeviceVerificationChanged);
|
|
|
|
MatrixClientPeg.get().removeListener('userTrustStatusChanged', this.onUserTrustStatusChanged);
|
|
|
|
MatrixClientPeg.get().removeListener('crossSigning.keysChanged', this.onCrossSingingKeysChanged);
|
|
|
|
MatrixClientPeg.get().removeListener('accountData', this.onAccountData);
|
|
|
|
MatrixClientPeg.get().removeListener('sync', this.onSync);
|
|
|
|
MatrixClientPeg.get().removeListener('RoomState.events', this.onRoomStateEvents);
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
2020-08-19 23:13:29 +08:00
|
|
|
if (this.dispatcherRef) {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
|
|
|
this.dispatcherRef = null;
|
|
|
|
}
|
2020-05-22 19:54:03 +08:00
|
|
|
this.dismissed.clear();
|
|
|
|
this.dismissedThisDeviceToast = false;
|
|
|
|
this.keyBackupInfo = null;
|
|
|
|
this.keyBackupFetchedAt = null;
|
|
|
|
this.ourDeviceIdsAtStart = null;
|
|
|
|
this.displayingToastsForDeviceIds = new Set();
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
|
2020-04-29 01:35:16 +08:00
|
|
|
/**
|
|
|
|
* Dismiss notifications about our own unverified devices
|
|
|
|
*
|
|
|
|
* @param {String[]} deviceIds List of device IDs to dismiss notifications for
|
|
|
|
*/
|
2020-05-22 20:29:53 +08:00
|
|
|
async dismissUnverifiedSessions(deviceIds: Iterable<string>) {
|
2021-09-21 23:48:09 +08:00
|
|
|
logger.log("Dismissing unverified sessions: " + Array.from(deviceIds).join(','));
|
2020-04-29 01:35:16 +08:00
|
|
|
for (const d of deviceIds) {
|
2020-05-22 19:54:03 +08:00
|
|
|
this.dismissed.add(d);
|
2020-04-29 01:35:16 +08:00
|
|
|
}
|
2020-04-28 01:33:54 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-01-26 00:52:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dismissEncryptionSetup() {
|
2020-05-22 19:54:03 +08:00
|
|
|
this.dismissedThisDeviceToast = true;
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private ensureDeviceIdsAtStartPopulated() {
|
2020-05-22 19:54:03 +08:00
|
|
|
if (this.ourDeviceIdsAtStart === null) {
|
2020-04-29 01:35:16 +08:00
|
|
|
const cli = MatrixClientPeg.get();
|
2020-05-22 19:54:03 +08:00
|
|
|
this.ourDeviceIdsAtStart = new Set(
|
2020-04-29 01:35:16 +08:00
|
|
|
cli.getStoredDevicesForUser(cli.getUserId()).map(d => d.deviceId),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onWillUpdateDevices = async (users: string[], initialFetch?: boolean) => {
|
2020-04-30 00:33:18 +08:00
|
|
|
// If we didn't know about *any* devices before (ie. it's fresh login),
|
2020-04-30 00:16:04 +08:00
|
|
|
// then they are all pre-existing devices, so ignore this and set the
|
|
|
|
// devicesAtStart list to the devices that we see after the fetch.
|
|
|
|
if (initialFetch) return;
|
|
|
|
|
2020-04-29 01:35:16 +08:00
|
|
|
const myUserId = MatrixClientPeg.get().getUserId();
|
2021-07-20 05:43:11 +08:00
|
|
|
if (users.includes(myUserId)) this.ensureDeviceIdsAtStartPopulated();
|
2020-04-29 17:55:44 +08:00
|
|
|
|
|
|
|
// No need to do a recheck here: we just need to get a snapshot of our devices
|
2020-04-29 18:25:18 +08:00
|
|
|
// before we download any new ones.
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-04-29 01:35:16 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onDevicesUpdated = (users: string[]) => {
|
2020-01-17 19:43:35 +08:00
|
|
|
if (!users.includes(MatrixClientPeg.get().getUserId())) return;
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-01-17 19:43:35 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onDeviceVerificationChanged = (userId: string) => {
|
2020-01-30 05:55:27 +08:00
|
|
|
if (userId !== MatrixClientPeg.get().getUserId()) return;
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-01-26 00:52:12 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onUserTrustStatusChanged = (userId: string) => {
|
2020-01-26 00:52:12 +08:00
|
|
|
if (userId !== MatrixClientPeg.get().getUserId()) return;
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-01-26 00:52:12 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onCrossSingingKeysChanged = () => {
|
|
|
|
this.recheck();
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-04-09 19:43:51 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onAccountData = (ev: MatrixEvent) => {
|
2020-04-07 17:57:10 +08:00
|
|
|
// 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.') ||
|
2021-07-09 04:16:19 +08:00
|
|
|
ev.getType().startsWith('m.cross_signing.') ||
|
|
|
|
ev.getType() === 'm.megolm_backup.v1'
|
2020-04-07 17:57:10 +08:00
|
|
|
) {
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-03-21 02:53:31 +08:00
|
|
|
}
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-03-21 02:53:31 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onSync = (state, prevState) => {
|
|
|
|
if (state === 'PREPARED' && prevState === null) this.recheck();
|
2020-06-18 21:32:43 +08:00
|
|
|
};
|
2020-04-20 21:36:15 +08:00
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onRoomStateEvents = (ev: MatrixEvent) => {
|
2020-09-16 00:37:05 +08:00
|
|
|
if (ev.getType() !== "m.room.encryption") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a room changes to encrypted, re-check as it may be our first
|
|
|
|
// encrypted room. This also catches encrypted room creation as well.
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-09-16 00:37:05 +08:00
|
|
|
};
|
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private onAction = ({ action }: ActionPayload) => {
|
2020-08-19 23:13:29 +08:00
|
|
|
if (action !== "on_logged_in") return;
|
2021-07-20 05:43:11 +08:00
|
|
|
this.recheck();
|
2020-08-19 23:13:29 +08:00
|
|
|
};
|
|
|
|
|
2020-01-26 00:52:12 +08:00
|
|
|
// The server doesn't tell us when key backup is set up, so we poll
|
|
|
|
// & cache the result
|
2021-07-20 05:43:11 +08:00
|
|
|
private async getKeyBackupInfo() {
|
2020-01-26 00:52:12 +08:00
|
|
|
const now = (new Date()).getTime();
|
2020-05-22 19:54:03 +08:00
|
|
|
if (!this.keyBackupInfo || this.keyBackupFetchedAt < now - KEY_BACKUP_POLL_INTERVAL) {
|
|
|
|
this.keyBackupInfo = await MatrixClientPeg.get().getKeyBackupVersion();
|
|
|
|
this.keyBackupFetchedAt = now;
|
2020-01-26 00:52:12 +08:00
|
|
|
}
|
2020-05-22 19:54:03 +08:00
|
|
|
return this.keyBackupInfo;
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
|
2020-06-03 04:40:32 +08:00
|
|
|
private shouldShowSetupEncryptionToast() {
|
2020-08-19 20:28:03 +08:00
|
|
|
// If we're in the middle of a secret storage operation, we're likely
|
|
|
|
// modifying the state involved here, so don't add new toasts to setup.
|
|
|
|
if (isSecretStorageBeingAccessed()) return false;
|
2020-09-16 19:25:02 +08:00
|
|
|
// Show setup toasts once the user is in at least one encrypted room.
|
2020-06-03 04:40:32 +08:00
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
return cli && cli.getRooms().some(r => cli.isRoomEncrypted(r.roomId));
|
|
|
|
}
|
|
|
|
|
2021-07-20 05:43:11 +08:00
|
|
|
private async recheck() {
|
2020-01-17 19:43:35 +08:00
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
2021-09-21 23:48:09 +08:00
|
|
|
if (!(await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing"))) return;
|
2020-03-13 02:03:18 +08:00
|
|
|
|
2020-01-26 00:52:12 +08:00
|
|
|
if (!cli.isCryptoEnabled()) return;
|
2020-04-20 21:36:15 +08:00
|
|
|
// don't recheck until the initial sync is complete: lots of account data events will fire
|
|
|
|
// while the initial sync is processing and we don't need to recheck on each one of them
|
|
|
|
// (we add a listener on sync to do once check after the initial sync is done)
|
|
|
|
if (!cli.isInitialSyncComplete()) return;
|
2020-03-24 02:36:37 +08:00
|
|
|
|
2020-03-24 21:03:07 +08:00
|
|
|
const crossSigningReady = await cli.isCrossSigningReady();
|
2020-08-22 01:22:05 +08:00
|
|
|
const secretStorageReady = await cli.isSecretStorageReady();
|
|
|
|
const allSystemsReady = crossSigningReady && secretStorageReady;
|
2020-03-24 02:36:37 +08:00
|
|
|
|
2020-08-22 01:22:05 +08:00
|
|
|
if (this.dismissedThisDeviceToast || allSystemsReady) {
|
2020-05-22 20:29:53 +08:00
|
|
|
hideSetupEncryptionToast();
|
2020-06-03 04:40:32 +08:00
|
|
|
} else if (this.shouldShowSetupEncryptionToast()) {
|
2020-05-22 20:29:53 +08:00
|
|
|
// make sure our keys are finished downloading
|
|
|
|
await cli.downloadKeys([cli.getUserId()]);
|
|
|
|
// cross signing isn't enabled - nag to enable it
|
|
|
|
// There are 3 different toasts for:
|
2020-09-02 21:29:41 +08:00
|
|
|
if (
|
|
|
|
!cli.getCrossSigningId() &&
|
|
|
|
cli.getStoredCrossSigningForUser(cli.getUserId())
|
|
|
|
) {
|
2020-05-22 20:29:53 +08:00
|
|
|
// Cross-signing on account but this device doesn't trust the master key (verify this session)
|
|
|
|
showSetupEncryptionToast(SetupKind.VERIFY_THIS_SESSION);
|
|
|
|
} else {
|
2021-07-20 05:43:11 +08:00
|
|
|
const backupInfo = await this.getKeyBackupInfo();
|
2020-05-22 20:29:53 +08:00
|
|
|
if (backupInfo) {
|
|
|
|
// No cross-signing on account but key backup available (upgrade encryption)
|
2020-06-03 04:40:32 +08:00
|
|
|
showSetupEncryptionToast(SetupKind.UPGRADE_ENCRYPTION);
|
2020-01-26 00:52:12 +08:00
|
|
|
} else {
|
2020-05-22 20:29:53 +08:00
|
|
|
// No cross-signing or key backup on account (set up encryption)
|
2020-08-24 23:11:35 +08:00
|
|
|
await cli.waitForClientWellKnown();
|
2020-08-19 23:13:29 +08:00
|
|
|
if (isSecureBackupRequired() && isLoggedIn()) {
|
|
|
|
// If we're meant to set up, and Secure Backup is required,
|
|
|
|
// trigger the flow directly without a toast once logged in.
|
|
|
|
hideSetupEncryptionToast();
|
|
|
|
accessSecretStorage();
|
|
|
|
} else {
|
|
|
|
showSetupEncryptionToast(SetupKind.SET_UP_ENCRYPTION);
|
|
|
|
}
|
2020-01-26 00:52:12 +08:00
|
|
|
}
|
2020-03-21 03:01:26 +08:00
|
|
|
}
|
2020-01-26 00:52:12 +08:00
|
|
|
}
|
2020-01-17 22:08:37 +08:00
|
|
|
|
2020-04-30 00:16:04 +08:00
|
|
|
// This needs to be done after awaiting on downloadKeys() above, so
|
|
|
|
// we make sure we get the devices after the fetch is done.
|
2021-07-20 05:43:11 +08:00
|
|
|
this.ensureDeviceIdsAtStartPopulated();
|
2020-04-30 00:16:04 +08:00
|
|
|
|
2020-04-29 01:35:16 +08:00
|
|
|
// Unverified devices that were there last time the app ran
|
|
|
|
// (technically could just be a boolean: we don't actually
|
|
|
|
// need to remember the device IDs, but for the sake of
|
|
|
|
// symmetry...).
|
2020-05-22 19:54:03 +08:00
|
|
|
const oldUnverifiedDeviceIds = new Set<string>();
|
2020-04-29 01:35:16 +08:00
|
|
|
// Unverified devices that have appeared since then
|
2020-05-22 19:54:03 +08:00
|
|
|
const newUnverifiedDeviceIds = new Set<string>();
|
2020-04-29 01:35:16 +08:00
|
|
|
|
2020-03-27 23:45:46 +08:00
|
|
|
// as long as cross-signing isn't ready,
|
|
|
|
// you can't see or dismiss any device toasts
|
|
|
|
if (crossSigningReady) {
|
2020-04-29 01:35:16 +08:00
|
|
|
const devices = cli.getStoredDevicesForUser(cli.getUserId());
|
2020-03-27 23:45:46 +08:00
|
|
|
for (const device of devices) {
|
2020-05-22 19:54:03 +08:00
|
|
|
if (device.deviceId === cli.deviceId) continue;
|
2020-01-17 19:43:35 +08:00
|
|
|
|
2020-03-27 23:45:46 +08:00
|
|
|
const deviceTrust = await cli.checkDeviceTrust(cli.getUserId(), device.deviceId);
|
2020-05-22 19:54:03 +08:00
|
|
|
if (!deviceTrust.isCrossSigningVerified() && !this.dismissed.has(device.deviceId)) {
|
|
|
|
if (this.ourDeviceIdsAtStart.has(device.deviceId)) {
|
2020-04-29 01:35:16 +08:00
|
|
|
oldUnverifiedDeviceIds.add(device.deviceId);
|
|
|
|
} else {
|
|
|
|
newUnverifiedDeviceIds.add(device.deviceId);
|
|
|
|
}
|
2020-03-27 23:45:46 +08:00
|
|
|
}
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
2020-04-29 01:35:16 +08:00
|
|
|
}
|
2020-01-26 01:08:31 +08:00
|
|
|
|
2021-09-21 23:48:09 +08:00
|
|
|
logger.log("Old unverified sessions: " + Array.from(oldUnverifiedDeviceIds).join(','));
|
|
|
|
logger.log("New unverified sessions: " + Array.from(newUnverifiedDeviceIds).join(','));
|
2021-09-03 22:14:44 +08:00
|
|
|
|
2020-04-29 01:35:16 +08:00
|
|
|
// Display or hide the batch toast for old unverified sessions
|
|
|
|
if (oldUnverifiedDeviceIds.size > 0) {
|
2020-05-22 20:29:53 +08:00
|
|
|
showBulkUnverifiedSessionsToast(oldUnverifiedDeviceIds);
|
2020-04-29 01:35:16 +08:00
|
|
|
} else {
|
2020-05-22 20:29:53 +08:00
|
|
|
hideBulkUnverifiedSessionsToast();
|
2020-04-29 01:35:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show toasts for new unverified devices if they aren't already there
|
|
|
|
for (const deviceId of newUnverifiedDeviceIds) {
|
2020-05-22 20:29:53 +08:00
|
|
|
showUnverifiedSessionsToast(deviceId);
|
2020-04-29 01:35:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ...and hide any we don't need any more
|
2020-05-22 19:54:03 +08:00
|
|
|
for (const deviceId of this.displayingToastsForDeviceIds) {
|
2020-04-29 01:35:16 +08:00
|
|
|
if (!newUnverifiedDeviceIds.has(deviceId)) {
|
2020-05-22 20:29:53 +08:00
|
|
|
hideUnverifiedSessionsToast(deviceId);
|
2020-03-27 23:45:46 +08:00
|
|
|
}
|
2020-01-26 01:08:31 +08:00
|
|
|
}
|
2020-04-29 01:35:16 +08:00
|
|
|
|
2020-05-22 19:54:03 +08:00
|
|
|
this.displayingToastsForDeviceIds = newUnverifiedDeviceIds;
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
}
|