mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Prevent crash
This commit is contained in:
parent
9d21d210ed
commit
290cf15eff
1 changed files with 3 additions and 0 deletions
|
@ -725,6 +725,9 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
||||||
if (pos == NO_POSITION)
|
if (pos == NO_POSITION)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
|
||||||
|
return null;
|
||||||
|
|
||||||
TupleMessageEx prev = adapter.getItemAtPosition(pos - 1);
|
TupleMessageEx prev = adapter.getItemAtPosition(pos - 1);
|
||||||
TupleMessageEx message = adapter.getItemAtPosition(pos);
|
TupleMessageEx message = adapter.getItemAtPosition(pos);
|
||||||
if (pos > 0 && prev == null)
|
if (pos > 0 && prev == null)
|
||||||
|
|
Loading…
Reference in a new issue