Fix exception message for YoutubeStreamInfoItemExtractor#isShortFormContent

Co-authored-by: AudricV <74829229+AudricV@users.noreply.github.com>
This commit is contained in:
Caleb 2022-10-29 01:38:20 +01:00 committed by chowder
parent c5216f7c12
commit 9282c3c13b
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
}