From 64c7dff37279b79a9e8956794b93479cb1992be0 Mon Sep 17 00:00:00 2001 From: Michal Hruby Date: Sun, 4 Oct 2020 14:34:51 +0100 Subject: [PATCH] Fix options passing via Extract --- lib/extract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/extract.js b/lib/extract.js index ba4189b..c9b0d49 100644 --- a/lib/extract.js +++ b/lib/extract.js @@ -12,7 +12,7 @@ function Extract (opts) { Transform.call(this); this.opts = opts || {}; - this.unzipStream = new UnzipStream(); + this.unzipStream = new UnzipStream(this.opts); this.unfinishedEntries = 0; this.afterFlushWait = false; this.createdDirectories = {};