1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-08-18 13:34:40 +02:00

Remove unnecessary .to_string() calls

This commit is contained in:
Jonas Platte 2021-11-27 00:30:00 +01:00
parent 892a0525f2
commit 41fef1da64
No known key found for this signature in database
GPG key ID: CC154DE0E30B7C67

View file

@ -396,10 +396,7 @@ async fn find_actual_destination(
}
if let Some(port) = force_port {
FedDest::Named(
delegated_hostname,
format!(":{}", port.to_string()),
)
FedDest::Named(delegated_hostname, format!(":{}", port))
} else {
add_port_to_hostname(&delegated_hostname)
}
@ -432,10 +429,7 @@ async fn find_actual_destination(
}
if let Some(port) = force_port {
FedDest::Named(
hostname.clone(),
format!(":{}", port.to_string()),
)
FedDest::Named(hostname.clone(), format!(":{}", port))
} else {
add_port_to_hostname(&hostname)
}