Skip to content

Commit

Permalink
fix: add error callback to zip-browser's zip.createReader.
Browse files Browse the repository at this point in the history
  • Loading branch information
imquincychen committed May 10, 2019
1 parent fba3ecf commit 1375470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zip-browser.js
Expand Up @@ -76,7 +76,7 @@ Unzip.prototype.getEntries = function (callback) {
zipReader.getEntries(function (entries) {
callback(null, entries, entries.length);
});
});
}, callback);
};

Unzip.getEntryData = function (entry, callback) {
Expand Down

0 comments on commit 1375470

Please sign in to comment.