From: maximiliancw Date: Fri, 9 Jan 2026 15:56:09 +0000 (+0100) Subject: Fix: removed space in joined header string for consistency X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=4932da5631bc5c57e16f189c852e45fc06887877;p=sgasser-llm-shield.git Fix: removed space in joined header string for consistency --- diff --git a/src/routes/proxy.ts b/src/routes/proxy.ts index 1019583..f944c0e 100644 --- a/src/routes/proxy.ts +++ b/src/routes/proxy.ts @@ -93,7 +93,7 @@ proxyRoutes.post( if (secretsResult.detected) { const secretTypes = secretsResult.matches.map((m) => m.type); - const secretTypesStr = secretTypes.join(", "); + const secretTypesStr = secretTypes.join(","); // Block action - return 422 error if (config.secrets_detection.action === "block") {