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

@@ -42,7 +42,7 @@ public class PlayerNowPlayingSongAdapter extends RecyclerView.Adapter<PlayerNowP
Song song = songs.get(position);
CustomGlideRequest.Builder
.from(context, song.getId(), song.getBlurHash(), CustomGlideRequest.SONG_PIC)
.from(context, song.getId(), CustomGlideRequest.SONG_PIC)
.build()
.into(holder.cover);
}