From f57f97fcdca7bdf5a6ee2ed7c86137ea97cd5812 Mon Sep 17 00:00:00 2001 From: Jake Fink Date: Tue, 31 May 2022 10:10:34 -0400 Subject: [PATCH] show error when trying to enable browser integration on desktop (#2754) --- .../src/app/accounts/settings.component.ts | 15 +++++++++++++-- apps/desktop/src/locales/en/messages.json | 8 ++++---- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/apps/desktop/src/app/accounts/settings.component.ts b/apps/desktop/src/app/accounts/settings.component.ts index b374149b50..78ae76ea29 100644 --- a/apps/desktop/src/app/accounts/settings.component.ts +++ b/apps/desktop/src/app/accounts/settings.component.ts @@ -367,7 +367,7 @@ export class SettingsComponent implements OnInit { if (process.platform === "darwin" && !this.platformUtilsService.isMacAppStore()) { await this.platformUtilsService.showDialog( this.i18nService.t("browserIntegrationMasOnlyDesc"), - this.i18nService.t("browserIntegrationMasOnlyTitle"), + this.i18nService.t("browserIntegrationUnsupportedTitle"), this.i18nService.t("ok"), null, "warning" @@ -378,7 +378,18 @@ export class SettingsComponent implements OnInit { } else if (isWindowsStore()) { await this.platformUtilsService.showDialog( this.i18nService.t("browserIntegrationWindowsStoreDesc"), - this.i18nService.t("browserIntegrationWindowsStoreTitle"), + this.i18nService.t("browserIntegrationUnsupportedTitle"), + this.i18nService.t("ok"), + null, + "warning" + ); + + this.enableBrowserIntegration = false; + return; + } else if (process.platform == "linux") { + await this.platformUtilsService.showDialog( + this.i18nService.t("browserIntegrationLinuxDesc"), + this.i18nService.t("browserIntegrationUnsupportedTitle"), this.i18nService.t("ok"), null, "warning" diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json index a5ea4d8f76..590e3743f2 100644 --- a/apps/desktop/src/locales/en/messages.json +++ b/apps/desktop/src/locales/en/messages.json @@ -1518,18 +1518,18 @@ "enableBrowserIntegrationDesc": { "message": "Browser integration is used for biometrics in browser." }, - "browserIntegrationMasOnlyTitle": { + "browserIntegrationUnsupportedTitle": { "message": "Browser integration not supported" }, "browserIntegrationMasOnlyDesc": { "message": "Unfortunately browser integration is only supported in the Mac App Store version for now." }, - "browserIntegrationWindowsStoreTitle": { - "message": "Browser integration not supported" - }, "browserIntegrationWindowsStoreDesc": { "message": "Unfortunately browser integration is currently not supported in the Windows Store version." }, + "browserIntegrationLinuxDesc": { + "message": "Unfortunately browser integration is currently not supported in the linux version." + }, "enableBrowserIntegrationFingerprint": { "message": "Require verification for browser integration" },