modified: src/client.rs
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit

This commit is contained in:
Michael Wain 2024-10-12 17:11:45 +03:00
parent b87703d285
commit 6aa2926746

View File

@ -136,12 +136,12 @@ pub async fn client_mode(client_config: ClientConfiguration, fd: i32, env: &JNIE
}
}
}
rr1 = lrx.recv() {
rr1 = lrx.recv() => {
if let Ok(bytes) = rr1 {
FridaLib::traceFromNative(&env, String::from_utf8_lossy(&bytes).to_string());
}
}
rr2 = mx.recv() {
rr2 = mx.recv() => {
if let Ok(bytes) = rr2 {
let s_c = s_cipher.lock().await;