From b49ed31fa8e23a8c2a88282d71d1033a4c226f1b Mon Sep 17 00:00:00 2001 From: reis Date: Fri, 19 Aug 2022 17:19:09 +0300 Subject: [PATCH] Fix #265 --- wsEvents/PatchApp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wsEvents/PatchApp.js b/wsEvents/PatchApp.js index 8dc681e0..37bf0df5 100644 --- a/wsEvents/PatchApp.js +++ b/wsEvents/PatchApp.js @@ -74,7 +74,7 @@ async function afterBuild (ws) { .replace('v', '') .split('-')[0]; if (!microGVersion) { - await actualExec('adb install revanced/microg.apk'); + await actualExec(`adb install ${global.jarNames.microG}`); ws.send( JSON.stringify({ event: 'patchLog', @@ -82,7 +82,7 @@ async function afterBuild (ws) { }) ); } else if (microGVersion !== currentMicroGVersion) { - await actualExec('adb install revanced/microg.apk'); + await actualExec(`adb install ${global.jarNames.microG}`); ws.send( JSON.stringify({ event: 'patchLog',