mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Improved search error
This commit is contained in:
parent
f7886a5760
commit
adf130df6b
1 changed files with 6 additions and 2 deletions
|
@ -459,8 +459,12 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
|
|||
return search(false, browsable.keywords, protocol, state);
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
ProtocolException pex = new ProtocolException(
|
||||
"Search " + account.host, ex);
|
||||
String msg;
|
||||
if (ex instanceof ProtocolException)
|
||||
msg = context.getString(R.string.title_service_auth, account.host + ": " + ex.getMessage());
|
||||
else
|
||||
msg = "Search " + account.host;
|
||||
ProtocolException pex = new ProtocolException(msg, ex);
|
||||
Log.e(pex);
|
||||
throw pex;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue