You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have single instance enable the app.makeSingleInstance() function is used but it was replaced in Electron v4, see release notes https://www.electronjs.org/blog/electron-4-0. app.requestSingleInstanceLock() should be used instead
The text was updated successfully, but these errors were encountered:
In the meantime anyone who stumbles on this can fix this yourself by just setting "singleInstance" to false in .desktop/settings.json, then adding this in your .desktop/desktop.jsconstructor() method:
// ensure only a single instance of the app can be runconstgotTheLock=app.requestSingleInstanceLock();if(!gotTheLock){returnapp.quit();}
meteor-desktop/skeleton/app.js
Line 131 in 5aea4cc
If you have single instance enable the
app.makeSingleInstance()
function is used but it was replaced in Electron v4, see release notes https://www.electronjs.org/blog/electron-4-0.app.requestSingleInstanceLock()
should be used insteadThe text was updated successfully, but these errors were encountered: