Another attempt to catch zlib decompression errors

This commit is contained in:
shamoon 2023-06-13 19:21:12 -07:00
parent abcea88d0a
commit b437ccde2f

View file

@ -33,15 +33,13 @@ function handleRequest(requestor, url, params) {
const contentEncoding = response.headers['content-encoding']?.trim().toLowerCase();
let responseContent = response;
// zlib errors
responseContent.on("error", (e) => {
logger.error(e);
responseContent = response; // fallback
});
if (contentEncoding === 'gzip' || contentEncoding === 'deflate') {
responseContent = createUnzip();
// zlib errors
responseContent.on("error", (e) => {
logger.error(e);
responseContent = response; // fallback
});
response.pipe(responseContent);
}