Fix view count bug
This commit is contained in:
parent
122c464bb4
commit
9767b4a86d
|
@ -117,10 +117,7 @@ public class YoutubeStreamInfoItemExtractor implements StreamInfoItemExtractor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
output = Parser.matchGroup1("([0-9,\\. ]*)", input)
|
output = input.replaceAll("[^0-9]+", "");
|
||||||
.replace(" ", "")
|
|
||||||
.replace(".", "")
|
|
||||||
.replace(",", "");
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return Long.parseLong(output);
|
return Long.parseLong(output);
|
||||||
|
|
Loading…
Reference in New Issue