From ec26f0cfa886f275a1eca68f8d4a131d64ee203d Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Thu, 27 Mar 2025 01:31:43 +0700 Subject: [PATCH] fix: remove quotes from print blob id (#8356) Signed-off-by: Alexander Onnikov --- services/print/pod-print/src/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/print/pod-print/src/server.ts b/services/print/pod-print/src/server.ts index 214a62852c..b043e77756 100644 --- a/services/print/pod-print/src/server.ts +++ b/services/print/pod-print/src/server.ts @@ -272,5 +272,5 @@ export function listen (e: Express, port: number, host?: string): Server { } function getConvertId (file: string, etag: string): string { - return `${file}@${etag}` + return `${file}@${etag.replaceAll('"', '')}` }