Skip to content

Commit

Permalink
Fix reset in FallbackDataProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Sep 6, 2022
1 parent fe625d0 commit 17380d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "armarius",
"version": "1.6.1",
"version": "1.6.2",
"description": "A JavaScript library to read, write, and merge ZIP archives in web browsers.",
"repository": "github:aternosorg/armarius",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions src/DataProcessor/FallbackDataProcessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,11 @@ export default class FallbackDataProcessor extends DataProcessor {
getPostCrc() {
return this.dataProcessor.getPostCrc();
}

/**
* @inheritDoc
*/
reset() {
this.dataProcessor.reset();
}
}

0 comments on commit 17380d3

Please sign in to comment.