Modified bzip2 library export to use ES6 syntax. Fixes #382.

This commit is contained in:
n1474335 2018-10-12 10:28:15 +00:00
parent d6c6981bc0
commit 0c6efd95fa
2 changed files with 2 additions and 1 deletions

View File

@ -262,4 +262,4 @@ bzip2.decompress = function(bits, size, len){
return output; return output;
} }
module.exports = bzip2; export default bzip2;

View File

@ -67,6 +67,7 @@ class BackgroundWorkerWaiter {
log.debug("Background ChefWorker loaded"); log.debug("Background ChefWorker loaded");
break; break;
case "optionUpdate": case "optionUpdate":
case "statusMessage":
// Ignore these messages // Ignore these messages
break; break;
default: default: