If DANE fails for any reason at all, don't let it crash us
(cherry picked from commit a211e1621e12d4cb7281ae201b7d5abdd613abc1)
This commit is contained in:
parent
225816cbdc
commit
d2287c0301
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue