Skip to content

Commit c426140

Browse files
committed
-Fix channel extractor error.
1 parent 044b8fe commit c426140

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/schabi/newpipe/extractor/channel/ChannelInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static ChannelInfo getInfo(ServiceList serviceItem, String url) throws IO
5757
public static ChannelInfo getInfo(StreamingService service, String url) throws IOException, ExtractionException {
5858
ChannelExtractor extractor = service.getChannelExtractor(url);
5959
extractor.fetchPage();
60-
return getInfo(service.getChannelExtractor(url));
60+
return getInfo(extractor);
6161
}
6262

6363
public static ChannelInfo getInfo(ChannelExtractor extractor) throws ParsingException {

0 commit comments

Comments
 (0)