Added logging

This commit is contained in:
M66B 2020-06-14 17:15:39 +02:00
parent ed8425fcc8
commit 2e384bce4f
1 changed files with 2 additions and 1 deletions

View File

@ -481,7 +481,8 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
long uid = state.ifolder.getUID(m);
if (db.message().getMessageByUid(browsable.id, uid) == null)
add.add(m);
} catch (Throwable ignored) {
} catch (Throwable ex) {
Log.w(ex);
add.add(m);
}