Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

squirrel: resolve .quit() issue with missing ../screen #784

Merged
merged 1 commit into from Apr 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main.js
Expand Up @@ -15,7 +15,7 @@ const electronSquirrelStartup = require('electron-squirrel-startup');
// Entrypoint for electron-squirrel-startup.
// See https://github.com/jiahaog/nativefier/pull/744 for sample use case
if (electronSquirrelStartup) {
app.quit();
app.exit();
}

const { isOSX } = helpers;
Expand Down