Commit 708fe514 authored by vvb2060's avatar vvb2060 Committed by John Wu

Always use mirror path

parent 11c88238
...@@ -549,7 +549,7 @@ void magic_mount() { ...@@ -549,7 +549,7 @@ void magic_mount() {
LOGI("* Loading modules\n"); LOGI("* Loading modules\n");
for (const auto &m : module_list) { for (const auto &m : module_list) {
auto module = m.data(); auto module = m.data();
char *b = buf + sprintf(buf, MODULEROOT "/%s/", module); char *b = buf + sprintf(buf, "%s/" MODULEMNT "/%s/", MAGISKTMP.data(), module);
// Read props // Read props
strcpy(b, "system.prop"); strcpy(b, "system.prop");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment