Skip to content

Commit

Permalink
Fix listen argument parsing (#1588)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallets authored Nov 8, 2024
1 parent 7159acf commit 3d86ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl From<&CommonArgs> for Config {
}
if !args.listen.is_empty() {
config
.insert_json5("listen/endpoints", &json!(args.connect).to_string())
.insert_json5("listen/endpoints", &json!(args.listen).to_string())
.unwrap();
}
if args.no_multicast_scouting {
Expand Down

0 comments on commit 3d86ed4

Please sign in to comment.