Skip to content

Commit e44d092

Browse files
authored
Merge pull request TeamNewPipe#9642 from Jared234/8582_empty_playlists_not_shown
Fixed a bug that prevented the display of multiple empty playlists
2 parents 0546c9b + 9c19e98 commit e44d092

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
@@ -90,7 +90,7 @@ default Flowable<List<PlaylistStreamEntity>> listByService(final int serviceId)
9090
+ " FROM " + PLAYLIST_TABLE
9191
+ " LEFT JOIN " + PLAYLIST_STREAM_JOIN_TABLE
9292
+ " ON " + PLAYLIST_ID + " = " + JOIN_PLAYLIST_ID
93-
+ " GROUP BY " + JOIN_PLAYLIST_ID
93+
+ " GROUP BY " + PLAYLIST_ID
9494
+ " ORDER BY " + PLAYLIST_NAME + " COLLATE NOCASE ASC")
9595
Flowable<List<PlaylistMetadataEntry>> getPlaylistMetadata();
9696
}

0 commit comments

Comments
 (0)