Revert unnecessary string cast

This commit is contained in:
Cohee 2023-08-31 00:21:29 +03:00
parent 326c7d8841
commit 7f99ae5705
1 changed files with 3 additions and 3 deletions

View File

@ -4184,7 +4184,7 @@ function migrateSecrets() {
try {
let modified = false;
const fileContents = fs.readFileSync(SETTINGS_FILE, 'utf8');
const settings = JSON.parse(fileContents.toString());
const settings = JSON.parse(fileContents);
const oaiKey = settings?.api_key_openai;
const hordeKey = settings?.horde_settings?.api_key;
const novelKey = settings?.api_key_novel;