Skip to content

Commit

Permalink
Merge pull request #2426 from AllenCoder/master
Browse files Browse the repository at this point in the history
  • Loading branch information
rin4573281133639 committed Dec 30, 2025
2 parents 5261ee8 + 05620c9 commit 204bc59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.1.4'
}
}

Expand Down

0 comments on commit 204bc59

Please sign in to comment.