diff --git a/src/lib/features/frontend-api/frontend-api-service.ts b/src/lib/features/frontend-api/frontend-api-service.ts index 98b1d3e60158..b2dd9fd39f07 100644 --- a/src/lib/features/frontend-api/frontend-api-service.ts +++ b/src/lib/features/frontend-api/frontend-api-service.ts @@ -216,7 +216,7 @@ export class FrontendApiService { if (error) { throw new BadDataError(error); } - const settings = (await this.getFrontendSettings()) || {}; + const settings = (await this.getFrontendSettings(false)) || {}; await this.services.settingService.insert( frontendSettingsKey, { ...settings, frontendApiOrigins: value },