Skip to content

Commit 9c19e98

Browse files
committed
Fixed a bug that caused multiple empty playlists to be not shown.
1 parent 1bb166a commit 9c19e98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/org/schabi/newpipe/database/playlist/dao/PlaylistStreamDAO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ default Flowable<List<PlaylistStreamEntity>> listByService(final int serviceId)
8080
+ " FROM " + PLAYLIST_TABLE
8181
+ " LEFT JOIN " + PLAYLIST_STREAM_JOIN_TABLE
8282
+ " ON " + PLAYLIST_ID + " = " + JOIN_PLAYLIST_ID
83-
+ " GROUP BY " + JOIN_PLAYLIST_ID
83+
+ " GROUP BY " + PLAYLIST_ID
8484
+ " ORDER BY " + PLAYLIST_NAME + " COLLATE NOCASE ASC")
8585
Flowable<List<PlaylistMetadataEntry>> getPlaylistMetadata();
8686
}

0 commit comments

Comments
 (0)