mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(Compression Node): Fix issue with decompression failing with uppercase extensions (#6098)
This commit is contained in:
@@ -52,7 +52,7 @@ export class Compression implements INodeType {
|
||||
group: ['transform'],
|
||||
subtitle: '={{$parameter["operation"]}}',
|
||||
version: 1,
|
||||
description: 'Compress and uncompress files',
|
||||
description: 'Compress and decompress files',
|
||||
defaults: {
|
||||
name: 'Compression',
|
||||
color: '#408000',
|
||||
@@ -197,7 +197,7 @@ export class Compression implements INodeType {
|
||||
const binaryData = this.helpers.assertBinaryData(i, binaryPropertyName);
|
||||
const binaryDataBuffer = await this.helpers.getBinaryDataBuffer(i, binaryPropertyName);
|
||||
|
||||
if (binaryData.fileExtension === 'zip') {
|
||||
if (binaryData.fileExtension?.toLowerCase() === 'zip') {
|
||||
const files = await unzip(binaryDataBuffer);
|
||||
|
||||
for (const key of Object.keys(files)) {
|
||||
@@ -213,7 +213,7 @@ export class Compression implements INodeType {
|
||||
|
||||
binaryObject[`${outputPrefix}${zipIndex++}`] = data;
|
||||
}
|
||||
} else if (binaryData.fileExtension === 'gz') {
|
||||
} else if (binaryData.fileExtension?.toLowerCase() === 'gz') {
|
||||
const file = await gunzip(binaryDataBuffer);
|
||||
|
||||
const fileName = binaryData.fileName?.split('.')[0];
|
||||
|
||||
Reference in New Issue
Block a user