mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Prevent crash
This commit is contained in:
parent
8073cf425e
commit
0a583b7a01
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue