Prevent crash

pull/206/head
M66B 3 years ago
parent 20a5550fa6
commit 96f3a539d6

@ -2351,6 +2351,9 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
}
private TupleMessageEx getMessage(int pos) {
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
return null;
if (selectionTracker != null && selectionTracker.hasSelection())
return null;

Loading…
Cancel
Save