-Fix channel extractor error.

pull/57/head
John Zhen Mo 2017-12-29 16:13:24 -08:00
rodzic 044b8fe32f
commit c426140811
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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 {