mirror of
https://github.com/gchq/CyberChef
synced 2025-12-15 07:43:22 +00:00
Completed GZIP extraction
This commit is contained in:
@@ -46,7 +46,10 @@ class ExtractFiles extends Operation {
|
||||
detectedFiles.forEach(detectedFile => {
|
||||
try {
|
||||
files.push(extractFile(bytes, detectedFile.fileDetails, detectedFile.offset));
|
||||
} catch (err) {}
|
||||
} catch (err) {
|
||||
if (err.message.indexOf("No extraction algorithm available") < 0)
|
||||
throw err;
|
||||
}
|
||||
});
|
||||
|
||||
return files;
|
||||
|
||||
Reference in New Issue
Block a user