1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 07:01:05 +00:00

Catch all ASCII search exceptions

This commit is contained in:
M66B 2020-07-08 08:03:03 +02:00
parent 2c59441044
commit f16649d85e

View file

@ -471,7 +471,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
" messages=" + (messages == null ? null : messages.length));
return messages;
}
} catch (MessagingException ex) {
} catch (Throwable ex) {
ProtocolException pex = new ProtocolException(
"Search " + account.host + " " + criteria, ex);
EntityLog.log(context, pex.toString());