1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-27 03:53:00 +02:00

Merge pull request #694 from bitwarden/hotfix/only-change-socketroot-on-mac

This commit is contained in:
Oscar Hinton 2021-01-26 19:36:36 +01:00 committed by GitHub
commit e09697cd61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,9 @@ export class NativeMessagingMain {
listen() {
ipc.config.id = 'bitwarden';
ipc.config.retry = 1500;
ipc.config.socketRoot = path.join(homedir(), 'tmp');
if (process.platform === 'darwin') {
ipc.config.socketRoot = path.join(homedir(), 'tmp');
}
ipc.serve(() => {
ipc.server.on('message', (data: any, socket: any) => {

View File

@ -6,7 +6,9 @@ import * as path from 'path';
ipc.config.id = 'proxy';
ipc.config.retry = 1500;
ipc.config.logger = console.warn; // Stdout is used for native messaging
ipc.config.socketRoot = path.join(homedir(), 'tmp');
if (process.platform === 'darwin') {
ipc.config.socketRoot = path.join(homedir(), 'tmp');
}
export default class IPC {
onMessage: (message: object) => void