From 9282c3c13bbd80d56b42c870b980aa5169f76bb3 Mon Sep 17 00:00:00 2001 From: Caleb <16789070+chowder@users.noreply.github.com> Date: Sat, 29 Oct 2022 01:38:20 +0100 Subject: [PATCH] Fix exception message for YoutubeStreamInfoItemExtractor#isShortFormContent Co-authored-by: AudricV <74829229+AudricV@users.noreply.github.com> --- .../youtube/extractors/YoutubeStreamInfoItemExtractor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } }