1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Add trailing slash to ipc.config.socketRoot. (#695)

This commit is contained in:
Oscar Hinton
2021-01-26 22:32:25 +01:00
committed by GitHub
parent 644e58463b
commit c09ba7051f
2 changed files with 2 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ export class NativeMessagingMain {
ipc.config.id = 'bitwarden';
ipc.config.retry = 1500;
if (process.platform === 'darwin') {
ipc.config.socketRoot = path.join(homedir(), 'tmp');
ipc.config.socketRoot = `${homedir()}/tmp/`;
}
ipc.serve(() => {