mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-02 20:36:49 +01:00
Require only one autorun argument to be true
This commit is contained in:
parent
e65d1ad20f
commit
6a516bf3eb
@ -74,7 +74,7 @@ dns.setDefaultResultOrder('ipv4first');
|
||||
const cliArguments = yargs(hideBin(process.argv))
|
||||
.option('autorun', {
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
default: false,
|
||||
describe: 'Automatically launch SillyTavern in the browser.',
|
||||
}).option('corsProxy', {
|
||||
type: 'boolean',
|
||||
@ -124,7 +124,7 @@ if (fs.existsSync(whitelistPath)) {
|
||||
}
|
||||
|
||||
const whitelistMode = getConfigValue('whitelistMode', true);
|
||||
const autorun = getConfigValue('autorun', false) && cliArguments.autorun && !cliArguments.ssl;
|
||||
const autorun = (getConfigValue('autorun', false) || cliArguments.autorun) && !cliArguments.ssl;
|
||||
const enableExtensions = getConfigValue('enableExtensions', true);
|
||||
const listen = getConfigValue('listen', false);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user