Skip to content

Commit

Permalink
FIX: number of posts, not comments
Browse files Browse the repository at this point in the history
  • Loading branch information
edTheGuy00 committed Feb 16, 2018
1 parent 6e50b06 commit b63389f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ class TagDialogAdapter(private val callback: TagDialogCallback,
fun setItem(tag: RoomTags){

itemView.text_tag.text = tag.tag
itemView.text_posts.text = "${tag.comments}"
itemView.text_posts.text = "${tag.posts}"

itemView.setOnClickListener {
callback.onTagSelected(tag.tag)
Expand Down

0 comments on commit b63389f

Please sign in to comment.