From b310922fc0f9c3c6b591b8f1d162dd315998e755 Mon Sep 17 00:00:00 2001 From: litetex <40789489+litetex@users.noreply.github.com> Date: Fri, 21 May 2021 19:53:39 +0200 Subject: [PATCH] Better exception message --- .../youtube/extractors/YoutubeCommentsInfoItemExtractor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsInfoItemExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsInfoItemExtractor.java index 8c42a72f8..c932fb8db 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsInfoItemExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsInfoItemExtractor.java @@ -90,7 +90,7 @@ public class YoutubeCommentsInfoItemExtractor implements CommentsInfoItemExtract return (int) Utils.mixedNumberWordToLong(voteCount); } catch (Exception e) { - throw new ParsingException("Unexpected error while converting vote count", e); + throw new ParsingException("Unexpected error while converting vote count to like count", e); } }