1
0
Fork 1

If contacting a DNS server fails, fall back to no verify

(cherry picked from commit 8065d73135531bfd6279c80ed2f63c0875e09b8d)
This commit is contained in:
Stephen Paul Weber 2024-10-29 11:29:49 -05:00 committed by Arne
parent 4878146862
commit b07df293c7

View file

@ -498,8 +498,6 @@ public class Resolver {
return result;
} catch (DnssecValidationFailedException e) {
Log.d(Config.LOGTAG, Resolver.class.getSimpleName() + ": error resolving " + type.getSimpleName() + " with DNSSEC. Trying DNS instead.", e);
} catch (IOException e) {
throw e;
} catch (Throwable throwable) {
Log.d(Config.LOGTAG, Resolver.class.getSimpleName() + ": error resolving " + type.getSimpleName() + " with DNSSEC. Trying DNS instead.", throwable);
}