Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanfong127888 committed Jan 14, 2026
1 parent 73f9211 commit 846aaa9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,11 @@ private void loadMore() {
new Request(mNextRequestPage, new RequestCallBack() {
@Override
public void success(List<Status> data) {
setData(false, data);
/**
* fix https://github.com/CymChad/BaseRecyclerViewAdapterHelper/issues/2400
*/
boolean isRefresh =mNextRequestPage ==1;
setData(isRefresh, data);
}

@Override
Expand Down

0 comments on commit 846aaa9

Please sign in to comment.