sdk: Fix a typo

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
pull/1675/head
Kévin Commaille 2023-03-16 10:22:27 +01:00 committed by Jonas Platte
parent e23be44345
commit 46d8d26b71
1 changed files with 4 additions and 1 deletions

View File

@ -408,7 +408,10 @@ impl ClientBuilder {
if let Some(proxy) = well_known.sliding_sync_proxy.map(|p| p.url) {
sliding_sync_proxy = Url::parse(&proxy).ok();
}
debug!(homserver_url = well_known.homeserver.base_url, "Discovered the homeserver");
debug!(
homeserver_url = well_known.homeserver.base_url,
"Discovered the homeserver"
);
well_known.homeserver.base_url
}