diff --git a/src/app/accounts/settings.component.ts b/src/app/accounts/settings.component.ts index 26e1137d67..c1b35241cf 100644 --- a/src/app/accounts/settings.component.ts +++ b/src/app/accounts/settings.component.ts @@ -350,12 +350,12 @@ export class SettingsComponent implements OnInit { } async saveBrowserIntegration() { - if (process.platform ==='darwin' && !this.platformUtilsService.isMacAppStore()) { + if (process.platform === 'darwin' && !this.platformUtilsService.isMacAppStore()) { await this.platformUtilsService.showDialog( this.i18nService.t('browserIntegrationMasOnlyDesc'), this.i18nService.t('browserIntegrationMasOnlyTitle'), this.i18nService.t('ok'), null, 'warning'); - + this.enableBrowserIntegration = false; return; } diff --git a/src/proxy/nativemessage.ts b/src/proxy/nativemessage.ts index 6bc5488217..b7c06b56db 100644 --- a/src/proxy/nativemessage.ts +++ b/src/proxy/nativemessage.ts @@ -85,7 +85,7 @@ export default class NativeMessage { try { processData(); - } catch(e) { + } catch (e) { console.error(e); } }); diff --git a/src/services/nativeMessaging.service.ts b/src/services/nativeMessaging.service.ts index ba676a8549..1b45ba2782 100644 --- a/src/services/nativeMessaging.service.ts +++ b/src/services/nativeMessaging.service.ts @@ -59,7 +59,7 @@ export class NativeMessagingService { return; } } - + this.secureCommunication(remotePublicKey, appId); return; }