fix: remove content-length

This commit is contained in:
David Nguyen
2025-11-06 22:20:59 +11:00
parent 4e38d861f6
commit f72cabf5ca

View File

@ -52,7 +52,7 @@ export const handleEnvelopeItemFileRequest = async ({
} }
c.header('Content-Type', 'application/pdf'); c.header('Content-Type', 'application/pdf');
c.header('Content-Length', file.length.toString()); // c.header('Content-Length', file.length.toString());
c.header('ETag', etag); c.header('ETag', etag);
if (!isDownload) { if (!isDownload) {