We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb166a commit 9c19e98Copy full SHA for 9c19e98
1 file changed
app/src/main/java/org/schabi/newpipe/database/playlist/dao/PlaylistStreamDAO.java
@@ -80,7 +80,7 @@ default Flowable<List<PlaylistStreamEntity>> listByService(final int serviceId)
80
+ " FROM " + PLAYLIST_TABLE
81
+ " LEFT JOIN " + PLAYLIST_STREAM_JOIN_TABLE
82
+ " ON " + PLAYLIST_ID + " = " + JOIN_PLAYLIST_ID
83
- + " GROUP BY " + JOIN_PLAYLIST_ID
+ + " GROUP BY " + PLAYLIST_ID
84
+ " ORDER BY " + PLAYLIST_NAME + " COLLATE NOCASE ASC")
85
Flowable<List<PlaylistMetadataEntry>> getPlaylistMetadata();
86
}
0 commit comments