Fix SubsonicPreferences creation

This commit is contained in:
CappielloAntonio 2021-07-28 13:55:05 +02:00
parent 7bd2b10165
commit ca1831d23c
3 changed files with 8 additions and 13 deletions

View file

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