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)
|
||||
.replace(" ", "")
|
||||
.replace(".", "")
|
||||
.replace(",", "");
|
||||
output = input.replaceAll("[^0-9]+", "");
|
||||
|
||||
try {
|
||||
return Long.parseLong(output);
|
||||
|
|
Loading…
Reference in New Issue