mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
Fix development build not working with bitwarden:// protocol (#1165)
This commit is contained in:
parent
5fd1da0c58
commit
b70d2fb3c3
@ -131,7 +131,14 @@ export class Main {
|
|||||||
this.nativeMessagingMain.listen();
|
this.nativeMessagingMain.listen();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!app.isDefaultProtocolClient('bitwarden')) {
|
app.removeAsDefaultProtocolClient('bitwarden');
|
||||||
|
if (process.env.NODE_ENV === 'development' && process.platform === 'win32') {
|
||||||
|
// Fix development build on Windows requirering a different protocol client
|
||||||
|
app.setAsDefaultProtocolClient('bitwarden', process.execPath, [
|
||||||
|
process.argv[1],
|
||||||
|
path.resolve(process.argv[2]),
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
app.setAsDefaultProtocolClient('bitwarden');
|
app.setAsDefaultProtocolClient('bitwarden');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user