Skip to content

Commit b310922

Browse files
committed
Better exception message
1 parent 86bb9ef commit b310922

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public int getLikeCount() throws ParsingException {
9090

9191
return (int) Utils.mixedNumberWordToLong(voteCount);
9292
} catch (Exception e) {
93-
throw new ParsingException("Unexpected error while converting vote count", e);
93+
throw new ParsingException("Unexpected error while converting vote count to like count", e);
9494
}
9595
}
9696

0 commit comments

Comments
 (0)