Merge remote-tracking branch 'upstream/dev' into feature/frames
This commit is contained in:
commit
ab32b0ed84
|
@ -61,7 +61,7 @@ public class YoutubeStreamInfoItemExtractor implements StreamInfoItemExtractor {
|
||||||
@Override
|
@Override
|
||||||
public String getUrl() throws ParsingException {
|
public String getUrl() throws ParsingException {
|
||||||
try {
|
try {
|
||||||
Element el = item.select("div[class*=\"yt-lockup-video\"").first();
|
Element el = item.select("div[class*=\"yt-lockup-video\"]").first();
|
||||||
Element dl = el.select("h3").first().select("a").first();
|
Element dl = el.select("h3").first().select("a").first();
|
||||||
return dl.attr("abs:href");
|
return dl.attr("abs:href");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -72,7 +72,7 @@ public class YoutubeStreamInfoItemExtractor implements StreamInfoItemExtractor {
|
||||||
@Override
|
@Override
|
||||||
public String getName() throws ParsingException {
|
public String getName() throws ParsingException {
|
||||||
try {
|
try {
|
||||||
Element el = item.select("div[class*=\"yt-lockup-video\"").first();
|
Element el = item.select("div[class*=\"yt-lockup-video\"]").first();
|
||||||
Element dl = el.select("h3").first().select("a").first();
|
Element dl = el.select("h3").first().select("a").first();
|
||||||
return dl.text();
|
return dl.text();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Reference in New Issue