mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Prevent crash on searching
This commit is contained in:
parent
a1f13d8e3a
commit
852b90ebb7
1 changed files with 2 additions and 3 deletions
|
@ -382,10 +382,9 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
|
|||
error = true;
|
||||
if (ex instanceof FolderClosedException)
|
||||
Log.w("Search", ex);
|
||||
else {
|
||||
else
|
||||
Log.e("Search", ex);
|
||||
throw ex;
|
||||
}
|
||||
throw ex;
|
||||
}
|
||||
|
||||
List<EntityRule> rules = db.rule().getEnabledRules(browsable.id);
|
||||
|
|
Loading…
Reference in a new issue