diff --git a/src/webui/src/helper/config.ts b/src/webui/src/helper/config.ts index 6f74e93e9..314362fa8 100644 --- a/src/webui/src/helper/config.ts +++ b/src/webui/src/helper/config.ts @@ -90,7 +90,7 @@ export class WebUiConfigWrapper { try { const configPath = resolve(webUiPathWrapper.configPath, './webui.json'); - if (!await fs.access(configPath, constants.R_OK | constants.W_OK).then(() => true).catch(() => false)) { + if (!await fs.access(configPath, constants.R_OK).then(() => true).catch(() => false)) { await fs.writeFile(configPath, JSON.stringify(defaultconfig, null, 4)); }