Refactor magiskrc

This commit is contained in:
LoveSy
2023-03-16 10:26:27 +08:00
committed by John Wu
parent 87e036a190
commit dba5020e4f
9 changed files with 36 additions and 58 deletions

View File

@@ -274,8 +274,7 @@ static void handle_request(pollfd *pfd) {
} else if (code < MainRequest::_STAGE_BARRIER_) {
exec_task([=] { handle_request_async(client, code, cred); });
} else {
close(client);
exec_task([=] { boot_stage_handler(code); });
exec_task([=] { boot_stage_handler(client, code); });
}
return;