Update exception message.
Co-authored-by: Tobi <TobiGr@users.noreply.github.com>
This commit is contained in:
parent
6f3f608ab6
commit
4bd59f65f4
|
@ -445,7 +445,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
|
||||||
try {
|
try {
|
||||||
return Utils.mixedNumberWordToLong(getTextFromObject(videoOwnerRenderer.getObject("subscriberCountText")));
|
return Utils.mixedNumberWordToLong(getTextFromObject(videoOwnerRenderer.getObject("subscriberCountText")));
|
||||||
} catch (final NumberFormatException e) {
|
} catch (final NumberFormatException e) {
|
||||||
throw new ParsingException("Could not get subscriber count", e);
|
throw new ParsingException("Could not get uploader subscriber count", e);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return ITEM_COUNT_UNKNOWN;
|
return ITEM_COUNT_UNKNOWN;
|
||||||
|
|
Loading…
Reference in New Issue