mirror of https://github.com/M66B/FairEmail.git
Removed same boundary check
This commit is contained in:
parent
7140a2deec
commit
47318409ff
|
@ -126,11 +126,6 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
|
|||
public void onItemAtEndLoaded(@NonNull final TupleMessageEx itemAtEnd) {
|
||||
Long id = (itemAtEnd == null ? null : itemAtEnd.id); // fall-safe
|
||||
|
||||
if (state.end != null && state.end.equals(id)) {
|
||||
Log.i("Boundary at same end=" + id);
|
||||
return;
|
||||
}
|
||||
|
||||
Log.i("Boundary at end=" + id);
|
||||
queue_load(state, id);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue