mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-27 23:40:36 +05:30
Merge branch 'dev' into recaptcha-with-url
This commit is contained in:
commit
3e2df12f12
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user