1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-22 14:11:00 +00:00

User readable MX error

This commit is contained in:
M66B 2021-07-12 21:08:36 +02:00
parent 375654b3be
commit 98e69c1338

View file

@ -80,7 +80,7 @@ public class DnsHelper {
String error = "Error " + lookup.getResult() + ": " + lookup.getErrorString();
if (lookup.getResult() == Lookup.HOST_NOT_FOUND ||
lookup.getResult() == Lookup.TYPE_NOT_FOUND)
throw new UnknownHostException(error);
throw new UnknownHostException(context.getString(R.string.title_no_server, domain));
else
Log.e(error);
} catch (UnknownHostException ex) {