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

This commit is contained in:
Michael Wain 2024-10-13 20:22:00 +03:00
parent 37012d037a
commit b2519a7b2a

View File

@ -136,8 +136,8 @@ pub async fn client_mode(client_config: ClientConfiguration, fd: i32, close_toke
tokio::select! {
_ = close_token.cancelled() => {
info!("Cancellation token has been thrown");
dev_read_task.join();
sock_read_task.join();
dev_read_task.await;
sock_read_task.await;
return;
}
rr = rx.recv() => {