diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamInfoItemExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamInfoItemExtractor.java index e8c027ef..c823621d 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamInfoItemExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamInfoItemExtractor.java @@ -333,7 +333,7 @@ public class YoutubeStreamInfoItemExtractor implements StreamInfoItemExtractor { .getString("webPageType"); return !isNullOrEmpty(webPageType) && webPageType.equals("WEB_PAGE_TYPE_SHORTS"); } catch (final Exception e) { - throw new ParsingException("Could not determine if short-form content", e); + throw new ParsingException("Could not determine if this is short-form content", e); } } }