2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-31 22:35:50 +00:00

Fix search error with some playlists

Somtimes there were two divs with class "yt-lockup-meta", so the extractor couldn't get the correct one.
This commit is contained in:
Stypox
2019-08-16 22:47:02 +02:00
parent 5f65788a2f
commit d4e975e4fa

View File

@@ -49,10 +49,11 @@ public class YoutubePlaylistInfoItemExtractor implements PlaylistInfoItemExtract
@Override @Override
public String getUrl() throws ParsingException { public String getUrl() throws ParsingException {
try { try {
final Element div = el.select("div[class=\"yt-lockup-meta\"]").first(); final Element a = el.select("div[class=\"yt-lockup-meta\"]")
.select("ul[class=\"yt-lockup-meta-info\"]")
.select("li").select("a").first();
if(div != null) { if(a != null) {
final Element a = div.select("a").first();
return a.attr("abs:href"); return a.attr("abs:href");
} }