Skip to content

Commit

Permalink
Fixed playlist order between "Bookmarked Playlists" list and "add to …
Browse files Browse the repository at this point in the history
…playlist" dialog list. Now both lists are sorted using case insensitive order if the user has not yet adjusted manually the order.
  • Loading branch information
nicholasala committed Sep 26, 2024
1 parent 035c394 commit 063568b
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 063568b

Please sign in to comment.