1
0
Fork 1

If DANE fails for any reason at all, don't let it crash us

(cherry picked from commit a211e1621e12d4cb7281ae201b7d5abdd613abc1)
This commit is contained in:
Stephen Paul Weber 2024-08-26 13:02:37 -05:00 committed by Arne
parent 225816cbdc
commit d2287c0301

View file

@ -423,7 +423,7 @@ public class MemorizingTrustManager {
} catch (final CertificateException e) {
Log.d(Config.LOGTAG, "checkCertTrusted DANE failure: " + e);
throw e;
} catch (final Exception e) {
} catch (final Throwable e) {
Log.d(Config.LOGTAG, "checkCertTrusted DANE related failure: " + e);
}
}