Fix channel url for channel items

This commit is contained in:
Coffeemakr 2017-11-25 02:38:46 +01:00
parent 9cd11a7b6b
commit 95120641a9
No known key found for this signature in database
GPG key ID: 3F35676D8FF6E743

View file

@ -222,6 +222,7 @@ public class YoutubeChannelExtractor extends ChannelExtractor {
collector.reset();
final String uploaderName = getName();
final String uploaderUrl = getCleanUrl();
for (final Element li : element.children()) {
if (li.select("div[class=\"feed-item-dismissable\"]").first() != null) {
collector.commit(new YoutubeStreamInfoItemExtractor(li) {
@ -252,6 +253,11 @@ public class YoutubeChannelExtractor extends ChannelExtractor {
return uploaderName;
}
@Override
public String getUploaderUrl() throws ParsingException {
return uploaderUrl;
}
@Override
public String getThumbnailUrl() throws ParsingException {
try {