Prevent crash

pull/156/head
M66B 6 years ago
parent 940547200c
commit 7ba42e46fe

@ -2838,6 +2838,9 @@ public class FragmentMessages extends FragmentBase {
}
private void navigate(long id, final boolean left) {
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.RESUMED))
return;
Bundle args = new Bundle();
args.putLong("id", id);
new SimpleTask<EntityMessage>() {

Loading…
Cancel
Save