fix: filter array of songs in setItems()

This commit is contained in:
Tim Schneeberger 2023-08-14 17:43:33 +02:00
parent 0c2f0d23cd
commit 59d7adb66d

View file

@ -80,7 +80,7 @@ public class DownloadHorizontalAdapter extends RecyclerView.Adapter<DownloadHori
this.filterKey = filterKey;
this.filterValue = filterValue;
this.songs = songs;
this.songs = filterSong(filterKey, filterValue, songs);
this.grouped = groupSong(songs);
notifyDataSetChanged();