1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Desktop: Fixes #1334 (maybe): Upgraded chokidar which it seems was randomly making Electron 4 crash (maybe due to fsevent package)

This commit is contained in:
Laurent Cozic
2019-03-12 21:41:13 +00:00
parent 20bb1238c5
commit 1602182085
4 changed files with 600 additions and 46 deletions

View File

@ -156,6 +156,12 @@ class BaseApplication {
continue;
}
if (arg === '--enable-logging') {
// Electron-specific flag used for debugging - ignore it
argv.splice(0, 1);
continue;
}
if (arg.length && arg[0] == '-') {
throw new JoplinError(_('Unknown flag: %s', arg), 'flagError');
} else {