From 83cea49a1b9eeb382cf6cb8a7b4b725d0371e3c9 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Mon, 21 Dec 2020 15:18:18 +0100 Subject: [PATCH] Add missing break statement (#1503) --- src/background/nativeMessaging.background.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/background/nativeMessaging.background.ts b/src/background/nativeMessaging.background.ts index 68e6d70a08..a8db0cbf04 100644 --- a/src/background/nativeMessaging.background.ts +++ b/src/background/nativeMessaging.background.ts @@ -90,11 +90,12 @@ export class NativeMessagingBackground { confirmText: this.i18nService.t('ok'), type: 'error', }); + break; case 'verifyFingerprint': { if (this.sharedSecret == null) { this.showFingerprintDialog(); } - return; + break; } default: // Ignore since it belongs to another device