modified: src/main.rs
All checks were successful
gitea/Frida-android-native/pipeline/head This commit looks good

This commit is contained in:
Michael Wain 2024-10-14 02:48:56 +03:00
parent 2cc7c129fe
commit 65c3026e89

View File

@ -75,7 +75,7 @@ mod jni {
let exit_code = match tokio::runtime::Builder::new_multi_thread().enable_all().build() {
Err(_e) => -3,
Ok(rt) => { rt.block_on(main_loop); -4 } //spawn
Ok(rt) => { rt.spawn(main_loop); -4 } //spawn
};
Ok(exit_code)