It's ok not being able to find a .well-known response.

merge-requests/551/head
Tobias Tom 11 months ago
parent 2a100412fa
commit 7990822f72

@ -506,7 +506,8 @@ async fn request_well_known(destination: &str) -> Option<String> {
.await;
debug!("Got well known response");
if let Err(e) = &response {
error!("Well known error: {e:?}");
debug!("Well known error: {e:?}");
return None;
}
let text = response.ok()?.text().await;
debug!("Got well known response text");

Loading…
Cancel
Save