fix: added file URI to Download object for improved download indexing

This commit is contained in:
antonio 2023-08-13 23:15:25 +02:00
parent 600c28c2a3
commit afeb72803d

View file

@ -80,6 +80,16 @@ public class SongHorizontalAdapter extends RecyclerView.Adapter<SongHorizontalAd
notifyDataSetChanged();
}
@Override
public int getItemViewType(int position) {
return position;
}
@Override
public long getItemId(int position) {
return position;
}
public Child getItem(int id) {
return songs.get(id);
}