diff --git a/src/core/operations/Bzip2Compress.mjs b/src/core/operations/Bzip2Compress.mjs index e0dd9a12..5c029c61 100644 --- a/src/core/operations/Bzip2Compress.mjs +++ b/src/core/operations/Bzip2Compress.mjs @@ -45,7 +45,7 @@ class Bzip2Compress extends Operation { * @returns {File} */ run(input, args) { - const [blockSize, workFactor, filename] = args; + const [blockSize, workFactor] = args; if (input.byteLength <= 0) { throw new OperationError("Please provide an input."); }