implement commenting with tips #922

Merged
akinwale merged 4 commits from commenting into master 2020-05-31 22:06:04 +02:00
Showing only changes of commit 4685791f9c - Show all commits

View file

@ -139,7 +139,7 @@ public class CommentListAdapter extends RecyclerView.Adapter<CommentListAdapter.
if (replies != null && replies.size() > 0) {
for (int j = 0; j < replies.size(); j++) {
Comment reply = item.getReplies().get(j);
if (channelId.equalsIgnoreCase(item.getChannelId())) {
if (channelId.equalsIgnoreCase(reply.getChannelId())) {
reply.setPoster(channel);
break;
}