Skip to content

Commit

Permalink
Modified bzip2 library export to use ES6 syntax. Fixes #382.
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Oct 12, 2018
1 parent d6c6981 commit 0c6efd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/vendor/bzip2.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,4 +262,4 @@ bzip2.decompress = function(bits, size, len){
return output;
}

module.exports = bzip2;
export default bzip2;
1 change: 1 addition & 0 deletions src/web/BackgroundWorkerWaiter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class BackgroundWorkerWaiter {
log.debug("Background ChefWorker loaded");
break;
case "optionUpdate":
case "statusMessage":
// Ignore these messages
break;
default:
Expand Down

0 comments on commit 0c6efd9

Please sign in to comment.