Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit 4889fe2

Browse files
authored
fix: content length header (#16)
1 parent c2c6085 commit 4889fe2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/adapters/azure/staticHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const getHandler = ({ containerClient, collection }: Args): StaticHandler
2020
const blob = await blockBlobClient.download(0)
2121

2222
res.set({
23-
'Content-Length': blob.contentLanguage,
23+
'Content-Length': blob.contentLength,
2424
'Content-Type': blob.contentType,
2525
ETag: blob.etag,
2626
})

0 commit comments

Comments
 (0)