diff --git a/src/rust/lqosd/src/node_manager/ws/ticker/ipstats_conversion.rs b/src/rust/lqosd/src/node_manager/ws/ticker/ipstats_conversion.rs index baf0da14..f42df95f 100644 --- a/src/rust/lqosd/src/node_manager/ws/ticker/ipstats_conversion.rs +++ b/src/rust/lqosd/src/node_manager/ws/ticker/ipstats_conversion.rs @@ -40,7 +40,7 @@ impl From<&IpStats> for IpStatsWithPlan { } else { &circuit.circuit_name }; - result.ip_address = format!("{} ({})", name, result.ip_address); + result.ip_address = format!("{}", name); result.plan = DownUpOrder::new(circuit.download_max_mbps, circuit.upload_max_mbps); } }