Skip to content

Commit 60fb30f

Browse files
authored
Merge pull request #928 from FireMasterK/comment-urls
Parse YouTube comments as HTML
2 parents a3ed947 + 4e14644 commit 60fb30f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsInfoItemExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public String getCommentText() throws ParsingException {
184184
// https://github.com/TeamNewPipe/NewPipeExtractor/issues/380#issuecomment-668808584
185185
return "";
186186
}
187-
final String commentText = getTextFromObject(contentText);
187+
final String commentText = getTextFromObject(contentText, true);
188188
// YouTube adds U+FEFF in some comments.
189189
// eg. https://www.youtube.com/watch?v=Nj4F63E59io<feff>
190190
return Utils.removeUTF8BOM(commentText);

0 commit comments

Comments
 (0)