From 3e37726d3b67058f30b150a7e4b5d5ea74b8dbd8 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Mon, 5 Feb 2024 17:46:54 +0100 Subject: switch to unzip-stream over unzipper unzipper apparently has a bug that causes extracted files to be corrupted, switching to unzip-stream may not be the best long term, but it at least solves this corrupting problem! --- src/modules/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/update.js') diff --git a/src/modules/update.js b/src/modules/update.js index 658e989..c001ba8 100644 --- a/src/modules/update.js +++ b/src/modules/update.js @@ -15,7 +15,7 @@ const is_running = require("./is_running"); console = require("./console"); -const unzip = require("unzipper"); +const unzip = require("unzip-stream"); const https = require("follow-redirects").https; let update = {}; -- cgit v1.2.3