mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 00:10:32 +05:30
Fixed crash on original comment click in replies.
This commit is contained in:
parent
1a2d8ddd0b
commit
05d2e98ed4
@ -79,10 +79,6 @@ class CommentsAdapter(
|
||||
commentText.text = comment.commentText?.replace("</a>", "</a> ")
|
||||
?.parseAsHtml(tagHandler = HtmlParser(LinkHandler(handleLink ?: {})))
|
||||
|
||||
commentText.setOnClickListener {
|
||||
navigateToReplies(comment)
|
||||
}
|
||||
|
||||
ImageHelper.loadImage(comment.thumbnail, commentorImage)
|
||||
likesTextView.text = comment.likeCount.formatShort()
|
||||
|
||||
@ -121,6 +117,9 @@ class CommentsAdapter(
|
||||
root.setOnClickListener {
|
||||
navigateToReplies(comment)
|
||||
}
|
||||
commentText.setOnClickListener {
|
||||
navigateToReplies(comment)
|
||||
}
|
||||
}
|
||||
root.setOnLongClickListener {
|
||||
ClipboardHelper.save(
|
||||
|
Loading…
x
Reference in New Issue
Block a user