Merge pull request #798 from bitwarden/hotfix/native-messaging-mac

Resolve browser biometrics not working for some
This commit is contained in:
Oscar Hinton 2021-03-19 17:18:32 +01:00 committed by GitHub
commit fc7a968b0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -14,10 +14,13 @@ export class NativeMessagingMain {
constructor(private logService: LogService, private windowMain: WindowMain, private userPath: string, private appPath: string) {}
listen() {
async listen() {
ipc.config.id = 'bitwarden';
ipc.config.retry = 1500;
if (process.platform === 'darwin') {
if (!existsSync(`${homedir()}/tmp`)) {
await fs.mkdir(`${homedir()}/tmp`);
}
ipc.config.socketRoot = `${homedir()}/tmp/`;
}
@ -163,8 +166,10 @@ export class NativeMessagingMain {
};
}
private writeManifest(destination: string, manifest: object) {
fs.mkdir(path.dirname(destination));
private async writeManifest(destination: string, manifest: object) {
if (!existsSync(path.dirname(destination))) {
await fs.mkdir(path.dirname(destination));
}
fs.writeFile(destination, JSON.stringify(manifest, null, 2)).catch(this.logService.error);
}