Skip to content

Commit 02810a7

Browse files
committed
Add a comment
1 parent bf70d32 commit 02810a7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/extractors/SoundcloudPlaylistExtractor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ public InfoItemsPage<StreamInfoItem> getPage(final Page page) throws IOException
171171

172172
try {
173173
final JsonArray tracks = JsonParser.array().from(response);
174-
// Response may not contain tracks in the same order as currentIds
174+
// Response may not contain tracks in the same order as currentIds.
175+
// The streams are displayed in the order which is used in currentIds on SoundCloud.
175176
final HashMap<Integer, JsonObject> idToTrack = new HashMap<>();
176177
for (final Object track : tracks) {
177178
if (track instanceof JsonObject) {

0 commit comments

Comments
 (0)