parent
65687f3b9b
commit
a6961c5efa
|
@ -358,6 +358,10 @@ public class YoutubeStreamExtractor extends StreamExtractor {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (likesString.toLowerCase().contains("no likes")) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
return Integer.parseInt(Utils.removeNonDigitCharacters(likesString));
|
return Integer.parseInt(Utils.removeNonDigitCharacters(likesString));
|
||||||
} catch (final NumberFormatException nfe) {
|
} catch (final NumberFormatException nfe) {
|
||||||
throw new ParsingException("Could not parse \"" + likesString + "\" as an Integer",
|
throw new ParsingException("Could not parse \"" + likesString + "\" as an Integer",
|
||||||
|
|
Loading…
Reference in New Issue