mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-24 09:00:31 +00:00
used regex to delete spaces inside parseLong() argument
This commit is contained in:
parent
a1a12ca9f7
commit
80dae6ece7
@ -127,6 +127,7 @@ public class YoutubeSearchEngine implements SearchEngine {
|
|||||||
.text();
|
.text();
|
||||||
viewCountInfo = viewCountInfo.substring(0, viewCountInfo.indexOf(' '));
|
viewCountInfo = viewCountInfo.substring(0, viewCountInfo.indexOf(' '));
|
||||||
viewCountInfo = viewCountInfo.replaceAll("[,.]", "");
|
viewCountInfo = viewCountInfo.replaceAll("[,.]", "");
|
||||||
|
viewCountInfo = viewCountInfo.replaceAll("\\s","");
|
||||||
resultItem.view_count = Long.parseLong(viewCountInfo);
|
resultItem.view_count = Long.parseLong(viewCountInfo);
|
||||||
|
|
||||||
Element te = item.select("div[class=\"yt-thumb video-thumb\"]").first()
|
Element te = item.select("div[class=\"yt-thumb video-thumb\"]").first()
|
||||||
|
Loading…
Reference in New Issue
Block a user