1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Prevent crash

This commit is contained in:
M66B 2019-08-09 16:50:04 +02:00
parent 8073cf425e
commit 0a583b7a01

View file

@ -1726,7 +1726,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
args.putLongArray("ids", id == null ? getSelection() : new long[]{id});
args.putBoolean("seen", seen);
selectionTracker.clearSelection();
if (selectionTracker != null)
selectionTracker.clearSelection();
new SimpleTask<Void>() {
@Override