mirror of https://github.com/M66B/FairEmail.git
Fixed crash
This commit is contained in:
parent
5bcd9ee776
commit
2abe80b20c
|
@ -96,7 +96,7 @@ public class ViewModelMessages extends ViewModel {
|
|||
} else
|
||||
intf.onNext(null);
|
||||
|
||||
if (pos + 1 <= list.size()) {
|
||||
if (pos + 1 < list.size()) {
|
||||
TupleMessageEx prev = list.get(pos + 1);
|
||||
if (prev == null)
|
||||
load = true;
|
||||
|
|
Loading…
Reference in New Issue