Removed placeholder in every adapter

This commit is contained in:
CappielloAntonio 2021-08-05 14:04:34 +02:00
parent 562d437da7
commit f5b767157d
25 changed files with 30 additions and 42 deletions

View file

@ -47,7 +47,7 @@ public class ArtistAdapter extends RecyclerView.Adapter<ArtistAdapter.ViewHolder
holder.textArtistName.setText(MusicUtil.getReadableInfo(artist.getName()));
CustomGlideRequest.Builder
.from(context, artist.getId(), artist.getPrimaryBlurHash(), CustomGlideRequest.ARTIST_PIC)
.from(context, artist.getId(), CustomGlideRequest.ARTIST_PIC)
.build()
.into(holder.cover);
}