Catch all ASCII search exceptions

This commit is contained in:
M66B 2020-07-08 08:03:03 +02:00
parent 2c59441044
commit f16649d85e
1 changed files with 1 additions and 1 deletions

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());