diff --git a/src/service/resolver/actual.rs b/src/service/resolver/actual.rs index bf97a6cb..1da58080 100644 --- a/src/service/resolver/actual.rs +++ b/src/service/resolver/actual.rs @@ -318,8 +318,7 @@ impl super::Service { #[tracing::instrument(name = "srv", level = "debug", skip(self))] async fn query_srv_record(&self, hostname: &'_ str) -> Result> { - let hostnames = - [format!("_matrix-fed._tcp.{hostname}."), format!("_matrix._tcp.{hostname}.")]; + let hostnames = [format!("_matrix-fed._tcp.{hostname}.")]; for hostname in hostnames { self.services.server.check_running()?;