From e51bc58a856dcf336bd5b57ba487ecdc35fc6d70 Mon Sep 17 00:00:00 2001 From: Christian Schabesberger Date: Mon, 12 Feb 2018 20:23:43 +0100 Subject: [PATCH] fix compatibility issue --- .../java/org/schabi/newpipe/extractor/channel/ChannelInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/schabi/newpipe/extractor/channel/ChannelInfo.java b/src/main/java/org/schabi/newpipe/extractor/channel/ChannelInfo.java index 07b1aa057..07a14a3e8 100644 --- a/src/main/java/org/schabi/newpipe/extractor/channel/ChannelInfo.java +++ b/src/main/java/org/schabi/newpipe/extractor/channel/ChannelInfo.java @@ -37,7 +37,7 @@ public class ChannelInfo extends ListInfo { } - public static NextItemsResult getMoreItems(StreamingService service, String url, String nextStreamsUrl, String contentLanguage) throws IOException, ExtractionException { + public static NextItemsResult getMoreItems(StreamingService service, String url, String nextStreamsUrl) throws IOException, ExtractionException { return service.getChannelExtractor(url, nextStreamsUrl).getNextStreams(); }