Skip to content

Commit f40447f

Browse files
authored
Merge pull request #57 from karyogamy/channel_extractor_fix
Fix channel extractor error
2 parents 044b8fe + c426140 commit f40447f

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)