mirror of
https://github.com/TeamNewPipe/NewPipeExtractor
synced 2025-09-03 07:45:16 +00:00
Fix view count bug
This commit is contained in:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user