Skip to content

Commit

Permalink
Fix playlist order between "Bookmarked Playlists" list
Browse files Browse the repository at this point in the history
..add to playlist" dialog list. Now both lists are sorted using case insensitive order if the user has not yet adjusted manually the order.
Author: nicholasala
  • Loading branch information
whistlingwoods authored Oct 5, 2024
1 parent 26da637 commit 5497d6a
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 5497d6a

Please sign in to comment.