Check if the end is near

pull/194/head 1.1517
M66B 4 years ago
parent 25e85769c6
commit 68b5c8385b

@ -150,7 +150,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
executor.submit(new Runnable() {
@Override
public void run() {
if (state.end != null && !state.end.equals(end)) {
if (end != null && state.end != null && !state.end.equals(end)) {
Log.i("Boundary end=" + state.end + "/" + end);
return;
}

Loading…
Cancel
Save