diff --git a/src/lib/services/proxy-service.ts b/src/lib/services/proxy-service.ts index 9041846cde..5dd9157a4a 100644 --- a/src/lib/services/proxy-service.ts +++ b/src/lib/services/proxy-service.ts @@ -177,12 +177,14 @@ export class ProxyService { } private async fetchFrontendSettings(): Promise { - this.cachedFrontendSettings = await this.services.settingService.get( - frontendSettingsKey, - { - frontendApiOrigins: this.config.frontendApiOrigins, - }, - ); + try { + this.cachedFrontendSettings = + await this.services.settingService.get(frontendSettingsKey, { + frontendApiOrigins: this.config.frontendApiOrigins, + }); + } catch (error) { + this.logger.debug('Unable to fetch frontend settings'); + } return this.cachedFrontendSettings; }