Prevent crash

This commit is contained in:
M66B 2019-08-09 16:50:04 +02:00
parent 8073cf425e
commit 0a583b7a01
1 changed files with 2 additions and 1 deletions

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