Prevent crash on searching

pull/156/head
M66B 5 years ago
parent a1f13d8e3a
commit 852b90ebb7

@ -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…
Cancel
Save