mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-13 21:27:46 +02:00
fix: remove quotes from print blob id (#8356)
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
@@ -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('"', '')}`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user