Update packages/worker/src/api/controllers/global/configs.ts
Co-authored-by: Sam Rose <hello@samwho.dev>
This commit is contained in:
parent
87adb99073
commit
304b2a5c61
|
@ -215,7 +215,7 @@ export async function verifyAIConfig(
|
|||
existingConfig: AIConfig
|
||||
) {
|
||||
// ensure that the redacted API keys are not overwritten in the DB
|
||||
for (let uuid in existingConfig.config) {
|
||||
for (const uuid in existingConfig.config) {
|
||||
if (configToSave[uuid]?.apiKey === PASSWORD_REPLACEMENT) {
|
||||
configToSave[uuid].apiKey = existingConfig.config[uuid].apiKey
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue