1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-25 17:27:00 +00:00

Added fail-safe

This commit is contained in:
M66B 2023-03-28 08:39:54 +02:00
parent fdd842c616
commit 1412e5f6ce

View file

@ -3374,7 +3374,10 @@ public class FragmentMessages extends FragmentBase
@Override
protected void onExecuted(Bundle args, ArrayList<MessageTarget> result) {
moveUndo(result);
if (result == null || result.size() == 0)
redraw(NO_POSITION);
else
moveUndo(result);
}
@Override