From 90de86a5c7625bf836457d5d51a3d1753451f0ed Mon Sep 17 00:00:00 2001 From: ThePedroo Date: Tue, 23 Jul 2024 17:17:35 -0300 Subject: [PATCH] fix: error upon opening web UI without any zygisk modules This commit fixes the toast error that appears when opening ReZygisk's web UI. --- webroot/js/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webroot/js/main.js b/webroot/js/main.js index f3fda1e..76c677b 100644 --- a/webroot/js/main.js +++ b/webroot/js/main.js @@ -129,6 +129,7 @@ export function setErrorData(errorLog) { if (findModulesCmd.errno === 0) { const modules = findModulesCmd.stdout.split('\n') + modules.pop() if (modules.length === 0) return;