-Fix channel extractor error.

This commit is contained in:
John Zhen Mo 2017-12-29 16:13:24 -08:00
parent 044b8fe32f
commit c426140811
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class ChannelInfo extends ListInfo {
public static ChannelInfo getInfo(StreamingService service, String url) throws IOException, ExtractionException {
ChannelExtractor extractor = service.getChannelExtractor(url);
extractor.fetchPage();
return getInfo(service.getChannelExtractor(url));
return getInfo(extractor);
}
public static ChannelInfo getInfo(ChannelExtractor extractor) throws ParsingException {