Merge pull request #57 from karyogamy/channel_extractor_fix
Fix channel extractor error
This commit is contained in:
commit
f40447fa40
|
@ -57,7 +57,7 @@ public class ChannelInfo extends ListInfo {
|
||||||
public static ChannelInfo getInfo(StreamingService service, String url) throws IOException, ExtractionException {
|
public static ChannelInfo getInfo(StreamingService service, String url) throws IOException, ExtractionException {
|
||||||
ChannelExtractor extractor = service.getChannelExtractor(url);
|
ChannelExtractor extractor = service.getChannelExtractor(url);
|
||||||
extractor.fetchPage();
|
extractor.fetchPage();
|
||||||
return getInfo(service.getChannelExtractor(url));
|
return getInfo(extractor);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ChannelInfo getInfo(ChannelExtractor extractor) throws ParsingException {
|
public static ChannelInfo getInfo(ChannelExtractor extractor) throws ParsingException {
|
||||||
|
|
Loading…
Reference in New Issue