Skip to content
This repository was archived by the owner on Oct 22, 2021. It is now read-only.

Commit de18a93

Browse files
committed
🚑 Fix #406 nointro setting not being applied
1 parent 1898a73 commit de18a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const settingsFile = path.join(settingsDir, "settings.json");
3737
window.settings = require(settingsFile);
3838

3939
// Load CLI parameters
40-
if (electron.remote.process.argv.includes("--nointro")) {
40+
if (electron.remote.process.argv.includes("--nointro") || window.settings.nointro) {
4141
window.settings.nointro = true;
4242
} else {
4343
window.settings.nointro = false;

0 commit comments

Comments
 (0)