Skip to content

Commit

Permalink
cache-busting on cors settings set
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek committed Jan 7, 2025
1 parent 866b46a commit 0c6fef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/features/frontend-api/frontend-api-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit 0c6fef2

Please sign in to comment.