Filter favicon exception

This commit is contained in:
M66B 2020-07-01 19:44:01 +02:00
parent de5336da1d
commit 2270e07842
1 changed files with 3 additions and 0 deletions

View File

@ -498,6 +498,9 @@ public class ContactInfo {
(ex instanceof SSLHandshakeException &&
("connection closed".equals(ex.getMessage())) ||
"Connection closed by peer".equals(ex.getMessage())) ||
(ex instanceof SSLHandshakeException &&
ex.getMessage() != null &&
ex.getMessage().contains("usually a protocol error")) ||
(ex instanceof SSLHandshakeException &&
(ex.getCause() instanceof SSLProtocolException ||
ex.getCause() instanceof CertificateException ||