We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 453356a commit 9c3b4dcCopy full SHA for 9c3b4dc
1 file changed
app/src/main/java/org/schabi/newpipe/ui/components/video/comment/CommentInfo.kt
@@ -12,14 +12,16 @@ class CommentInfo(
12
val comments: List<CommentsInfoItem>,
13
val nextPage: Page?,
14
val commentCount: Int,
15
- val isCommentsDisabled: Boolean
+ val isCommentsDisabled: Boolean,
16
+ val isLiveChat: Boolean = false
17
) {
18
constructor(commentsInfo: CommentsInfo) : this(
19
commentsInfo.serviceId,
20
commentsInfo.url,
21
commentsInfo.relatedItems,
22
commentsInfo.nextPage,
23
commentsInfo.commentsCount,
- commentsInfo.isCommentsDisabled
24
+ commentsInfo.isCommentsDisabled,
25
+ commentsInfo.isLiveChat
26
)
27
}
0 commit comments