Skip to content

Commit 9282c3c

Browse files
chowderAudricV
andcommitted
Fix exception message for YoutubeStreamInfoItemExtractor#isShortFormContent
Co-authored-by: AudricV <74829229+AudricV@users.noreply.github.com>
1 parent c5216f7 commit 9282c3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public boolean isShortFormContent() throws ParsingException {
333333
.getString("webPageType");
334334
return !isNullOrEmpty(webPageType) && webPageType.equals("WEB_PAGE_TYPE_SHORTS");
335335
} catch (final Exception e) {
336-
throw new ParsingException("Could not determine if short-form content", e);
336+
throw new ParsingException("Could not determine if this is short-form content", e);
337337
}
338338
}
339339
}

0 commit comments

Comments
 (0)