Skip to content

Commit 4e14644

Browse files
committed
Ensure comments are parsed with URLs and timestamps.
1 parent 14ef430 commit 4e14644

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
@@ -183,7 +183,7 @@ public String getCommentText() throws ParsingException {
183183
// https://github.com/TeamNewPipe/NewPipeExtractor/issues/380#issuecomment-668808584
184184
return "";
185185
}
186-
final String commentText = getTextFromObject(contentText);
186+
final String commentText = getTextFromObject(contentText, true);
187187
// YouTube adds U+FEFF in some comments.
188188
// eg. https://www.youtube.com/watch?v=Nj4F63E59io<feff>
189189
return Utils.removeUTF8BOM(commentText);

0 commit comments

Comments
 (0)