Skip to content

Commit 1eff8c5

Browse files
committed
rename filter playlist to playlists
1 parent 558a973 commit 1eff8c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class SoundcloudSearchQueryHandlerFactory extends SearchQueryHandlerFacto
1414

1515
public static final String TRACKS = "tracks";
1616
public static final String USERS = "users";
17-
public static final String PLAYLIST = "playlist";
17+
public static final String PLAYLISTS = "playlists";
1818
public static final String ALL = "all";
1919

2020
public static final int ITEMS_PER_PAGE = 10;
@@ -32,7 +32,7 @@ public String getUrl(String id, List<String> contentFilter, String sortFilter) t
3232
case USERS:
3333
url += "/users";
3434
break;
35-
case PLAYLIST:
35+
case PLAYLISTS:
3636
url += "/playlists";
3737
break;
3838
case ALL:
@@ -61,6 +61,6 @@ public String[] getAvailableContentFilter() {
6161
ALL,
6262
TRACKS,
6363
USERS,
64-
PLAYLIST};
64+
PLAYLISTS};
6565
}
6666
}

0 commit comments

Comments
 (0)