We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0546c9b + 9c19e98 commit e44d092Copy full SHA for e44d092
1 file changed
app/src/main/java/org/schabi/newpipe/database/playlist/dao/PlaylistStreamDAO.java
@@ -90,7 +90,7 @@ default Flowable<List<PlaylistStreamEntity>> listByService(final int serviceId)
90
+ " FROM " + PLAYLIST_TABLE
91
+ " LEFT JOIN " + PLAYLIST_STREAM_JOIN_TABLE
92
+ " ON " + PLAYLIST_ID + " = " + JOIN_PLAYLIST_ID
93
- + " GROUP BY " + JOIN_PLAYLIST_ID
+ + " GROUP BY " + PLAYLIST_ID
94
+ " ORDER BY " + PLAYLIST_NAME + " COLLATE NOCASE ASC")
95
Flowable<List<PlaylistMetadataEntry>> getPlaylistMetadata();
96
}
0 commit comments