Skip to content

Commit

Permalink
Merge pull request #11566 from nicholasala/fix/#10993-strange-playlis…
Browse files Browse the repository at this point in the history
…t-order

Fixed playlist order
  • Loading branch information
Stypox authored Nov 10, 2024
2 parents c0b36b8 + 063568b commit f08e078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,6 @@ default Flowable<List<PlaylistStreamEntity>> listByService(final int serviceId)
+ " AND :streamUrl = :streamUrl"

+ " GROUP BY " + JOIN_PLAYLIST_ID
+ " ORDER BY " + PLAYLIST_DISPLAY_INDEX)
+ " ORDER BY " + PLAYLIST_DISPLAY_INDEX + ", " + PLAYLIST_NAME)
Flowable<List<PlaylistDuplicatesEntry>> getPlaylistDuplicatesMetadata(String streamUrl);
}

0 comments on commit f08e078

Please sign in to comment.