Skip to content

Commit

Permalink
Fix then handling of the ConnectionAdded signal
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Sep 26, 2023
1 parent 9bf6566 commit 199fa6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/agama-lib/src/network/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl<'a> NetworkClient<'a> {

loop {
let signal = stream.next().await.unwrap();
let (id, _path): (String, String) = signal.body().unwrap();
let (id, _path): (String, OwnedObjectPath) = signal.body().unwrap();
if id == conn.id {
break;
};
Expand Down

0 comments on commit 199fa6f

Please sign in to comment.