1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Simplify logic for resolving path to exe for native messaging (#814)

This commit is contained in:
Oscar Hinton
2021-03-25 23:11:31 +01:00
committed by GitHub
parent fa8b368b99
commit b5492e9546
2 changed files with 4 additions and 7 deletions

View File

@@ -119,7 +119,7 @@ export class Main {
this.biometricMain = new BiometricDarwinMain(this.storageService, this.i18nService);
}
this.nativeMessagingMain = new NativeMessagingMain(this.logService, this.windowMain, app.getPath('userData'), app.getAppPath());
this.nativeMessagingMain = new NativeMessagingMain(this.logService, this.windowMain, app.getPath('userData'), app.getPath('exe'));
}
bootstrap() {