Fix image size settings

This commit is contained in:
CappielloAntonio 2021-08-31 10:12:11 +02:00
parent c522382da2
commit 2d7252e9e4
2 changed files with 5 additions and 4 deletions

View file

@ -121,7 +121,7 @@ public class ArtistPageFragment extends Fragment {
if (bind != null) bind.bioMoreTextViewClickable.setVisibility(artist.getLastfm() != null ? View.VISIBLE : View.GONE);
CustomGlideRequest.Builder
.from(requireContext(), /*artistPageViewModel.getArtist().getId()*/ null, CustomGlideRequest.ARTIST_PIC, artist.getImageUrl())
.from(requireContext(), artistPageViewModel.getArtist().getId(), CustomGlideRequest.ARTIST_PIC, /*artist.getImageUrl()*/ null)
.build()
.into(bind.artistBackdropImageView);