Accept more error variants in nicer_configuration_error

musl libc returns "failed to lookup address information: Name does not resolve" in some cases.
This commit is contained in:
link2xt
2022-07-06 22:45:44 +00:00
parent e149cd7afe
commit 4f2c68e5a4
3 changed files with 5 additions and 1 deletions

View File

@@ -642,6 +642,9 @@ async fn nicer_configuration_error(context: &Context, errors: Vec<ConfigurationE
.to_lowercase()
.contains("temporary failure in name resolution")
|| e.msg.to_lowercase().contains("name or service not known")
|| e.msg
.to_lowercase()
.contains("failed to lookup address information")
}) {
return stock_str::error_no_network(context).await;
}