fix: remove quotes from print blob id (#8356)

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
Alexander Onnikov
2025-03-26 22:31:43 +04:00
committed by GitHub
parent af1563f580
commit ec26f0cfa8
+1 -1
View File
@@ -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('"', '')}`
}