1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-12 01:09:11 +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 { if let Some(port) = force_port {
FedDest::Named( FedDest::Named(delegated_hostname, format!(":{}", port))
delegated_hostname,
format!(":{}", port.to_string()),
)
} else { } else {
add_port_to_hostname(&delegated_hostname) add_port_to_hostname(&delegated_hostname)
} }
@ -432,10 +429,7 @@ async fn find_actual_destination(
} }
if let Some(port) = force_port { if let Some(port) = force_port {
FedDest::Named( FedDest::Named(hostname.clone(), format!(":{}", port))
hostname.clone(),
format!(":{}", port.to_string()),
)
} else { } else {
add_port_to_hostname(&hostname) add_port_to_hostname(&hostname)
} }