Fix banner extaction
This commit is contained in:
parent
dbb1f371b3
commit
05189dadbf
|
@ -136,7 +136,7 @@ public class YoutubeChannelExtractor extends ChannelExtractor {
|
||||||
if(!isAjaxPage) {
|
if(!isAjaxPage) {
|
||||||
Element el = doc.select("div[id=\"gh-banner\"]").first().select("style").first();
|
Element el = doc.select("div[id=\"gh-banner\"]").first().select("style").first();
|
||||||
String cssContent = el.html();
|
String cssContent = el.html();
|
||||||
String url = "https:" + Parser.matchGroup1("url\\((.*)\\)", cssContent);
|
String url = "https:" + Parser.matchGroup1("url\\(([^)]+)\\)", cssContent);
|
||||||
if (url.contains("s.ytimg.com")) {
|
if (url.contains("s.ytimg.com")) {
|
||||||
bannerUrl = null;
|
bannerUrl = null;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue