[SoundCloud] Remove trailing , in playlist page urls
This commit is contained in:
parent
ae47c9587c
commit
c505d4e2b7
|
@ -141,8 +141,9 @@ public class SoundcloudPlaylistExtractor extends PlaylistExtractor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nextPageUrlBuilder.setLength(nextPageUrlBuilder.length() - 1); // remove trailing ,
|
||||||
nextPageUrl = nextPageUrlBuilder.toString();
|
nextPageUrl = nextPageUrlBuilder.toString();
|
||||||
if (nextPageUrl.endsWith("&ids=")) {
|
if (nextPageUrl.endsWith("&ids")) {
|
||||||
// there are no other videos
|
// there are no other videos
|
||||||
nextPageUrl = "";
|
nextPageUrl = "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue