Merge pull request #1364 from LenAnderson/staging

This commit is contained in:
Cohee 2023-11-18 14:16:10 +02:00 committed by GitHub
commit 73660c7bef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -72,6 +72,11 @@ if (process.versions && process.versions.node && process.versions.node.match(/20
dns.setDefaultResultOrder('ipv4first');
const cliArguments = yargs(hideBin(process.argv))
.option('autorun', {
type: 'boolean',
default: null,
describe: 'Automatically launch SillyTavern in the browser.'
})
.option('disableCsrf', {
type: 'boolean',
default: false,
@ -116,7 +121,7 @@ if (fs.existsSync(whitelistPath)) {
}
const whitelistMode = config.whitelistMode;
const autorun = config.autorun && !cliArguments.ssl;
const autorun = config.autorun && cliArguments.autorun!==false && !cliArguments.ssl;
const enableExtensions = config.enableExtensions;
const listen = config.listen;