Skip to content

Commit d4aa4a0

Browse files
committed
[SoundCloud] Fix typo in ChartsExtractor
1 parent 4b1121a commit d4aa4a0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudChartsExtractor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public InfoItemsPage<StreamInfoItem> getPage(String pageUrl) throws IOException,
4444
}
4545

4646

47-
private void computNextPageAndStreams() throws IOException, ExtractionException {
47+
private void computeNextPageAndStreams() throws IOException, ExtractionException {
4848
collector = new StreamInfoItemsCollector(getServiceId());
4949

5050
String apiUrl = "https://api-v2.soundcloud.com/charts" +
@@ -69,7 +69,7 @@ private void computNextPageAndStreams() throws IOException, ExtractionException
6969
@Override
7070
public String getNextPageUrl() throws IOException, ExtractionException {
7171
if (nextPageUrl == null) {
72-
computNextPageAndStreams();
72+
computeNextPageAndStreams();
7373
}
7474
return nextPageUrl;
7575
}
@@ -78,7 +78,7 @@ public String getNextPageUrl() throws IOException, ExtractionException {
7878
@Override
7979
public InfoItemsPage<StreamInfoItem> getInitialPage() throws IOException, ExtractionException {
8080
if (collector == null) {
81-
computNextPageAndStreams();
81+
computeNextPageAndStreams();
8282
}
8383
return new InfoItemsPage<>(collector, getNextPageUrl());
8484
}

0 commit comments

Comments
 (0)