You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
fix: Magisk app marking Zygisk as disabled
This commit fixes the regression added (by me) that doesn't set "ZYGISK_ENABLED" environment variable, making it mark Zygisk as disabled.
This commit is contained in:
@@ -674,7 +674,9 @@ void ZygiskContext::app_specialize_pre() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((info_flags & (PROCESS_IS_MANAGER | PROCESS_ROOT_IS_MAGISK)) == (PROCESS_IS_MANAGER | PROCESS_ROOT_IS_MAGISK)) {
|
if ((info_flags & (PROCESS_IS_MANAGER | PROCESS_ROOT_IS_MAGISK)) == (PROCESS_IS_MANAGER | PROCESS_ROOT_IS_MAGISK)) {
|
||||||
LOGI("Manager process detected, not touching.\n");
|
LOGI("Manager process detected. Notifying that Zygisk has been enabled.\n");
|
||||||
|
|
||||||
|
setenv("ZYGISK_ENABLED", "1", 1);
|
||||||
} else {
|
} else {
|
||||||
run_modules_pre();
|
run_modules_pre();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user