Fix channel url for channel items
This commit is contained in:
parent
9cd11a7b6b
commit
95120641a9
1 changed files with 6 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue