From b8a8515acc76836ee13f0316d2020a604216d99f Mon Sep 17 00:00:00 2001 From: Hampus Kraft Date: Mon, 31 Aug 2026 02:03:54 +0200 Subject: [PATCH] perf(api): stop exempting self-hosted from response gating --- 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 {