mirror of https://github.com/keeweb/keeweb
fixed socket cleanup on windows
parent
f893dcb19a
commit
603e698f5a
|
@ -299,7 +299,9 @@ const Launcher = {
|
|||
}
|
||||
},
|
||||
closeOldBrowserExtensionSocket(done) {
|
||||
if (process.platform !== 'win32') {
|
||||
if (process.platform === 'win32') {
|
||||
done();
|
||||
} else {
|
||||
this.deleteFile(this.getBrowserExtensionSocketName(), done);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue