1:修改已点歌曲,这里如果服务端发送的值存在重复,就重复了

This commit is contained in:
2025-12-23 00:13:40 +08:00
parent f0451bfeea
commit 4a83bbda2d

View File

@@ -169,7 +169,7 @@ public class RequestedSongsFragment extends BaseMvpFragment<RequestSongPresenter
} else if (state == RefreshState.Loading) {
// 加载更多,过滤重复数据后添加到列表
if (s.getLists().size() > 0) {
s.getLists().remove(0);
// s.getLists().remove(0);
adapter.addData(s.getLists());
mBinding.smartRefreshLayout.finishLoadMore(true);
} else {