fix adapter update poster method
This commit is contained in:
parent
b1e8371d28
commit
4685791f9c
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ public class CommentListAdapter extends RecyclerView.Adapter<CommentListAdapter.
|
||||||
if (replies != null && replies.size() > 0) {
|
if (replies != null && replies.size() > 0) {
|
||||||
for (int j = 0; j < replies.size(); j++) {
|
for (int j = 0; j < replies.size(); j++) {
|
||||||
Comment reply = item.getReplies().get(j);
|
Comment reply = item.getReplies().get(j);
|
||||||
if (channelId.equalsIgnoreCase(item.getChannelId())) {
|
if (channelId.equalsIgnoreCase(reply.getChannelId())) {
|
||||||
reply.setPoster(channel);
|
reply.setPoster(channel);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue