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

Co-authored-by: Audric V. <74829229+AudricV@users.noreply.github.com>
This commit is contained in:
Björn Sigurbergsson 2023-03-14 12:31:37 +00:00 committed by GitHub
parent 687fe4ec74
commit 4c1af8cb6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class YoutubeCommentsExtractor extends CommentsExtractor {
try {
return JsonUtils.getArray(nextResponse,
"contents.twoColumnWatchNextResults.results.results.contents");
} catch (final ParsingException pe) {
} catch (final ParsingException e) {
return new JsonArray(Collections.emptyList());
}
}