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

DNS: cleanup

This commit is contained in:
M66B 2024-07-03 14:35:10 +02:00
parent 1b770c89eb
commit 706ce8ba48

View file

@ -673,12 +673,17 @@ public class DnsHelper {
ex = new IOException("interrupted");
}
if (ex == null) {
Log.i("DNS Android answer=" + result);
return result;
} else {
Log.i(ex);
throw ex;
try {
if (ex == null) {
Log.i("DNS Android answer=" + result);
return result;
} else {
Log.i(ex);
throw ex;
}
} finally {
ex = null;
result = null;
}
}
}