From e6e4c6f7b5848f4414f6bbe6954325c118a6fb02 Mon Sep 17 00:00:00 2001 From: Hampus Date: Mon, 31 Aug 2026 02:04:07 +0200 Subject: [PATCH] perf(api): stop exempting self-hosted from response gating (#2228) --- fluxer_api/src/api/Config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluxer_api/src/api/Config.ts b/fluxer_api/src/api/Config.ts index 13d035db5..272c26b32 100644 --- a/fluxer_api/src/api/Config.ts +++ b/fluxer_api/src/api/Config.ts @@ -69,7 +69,7 @@ function resolveValidateResponses(master: MasterConfig): boolean { if (isBoolean(master.dev.validate_responses)) { return master.dev.validate_responses; } - return master.env !== 'production' || master.instance.self_hosted; + return master.env !== 'production'; } function resolveTrustClientIpHeader(proxyConfig: object): boolean {