mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-02-01 15:03:37 +00:00
Null checking
This commit is contained in:
@@ -134,7 +134,7 @@ public class ArtistPageFragment extends Fragment {
|
||||
if (bind != null) bind.artistPageBioSector.setVisibility(!normalizedBio.trim().isEmpty() ? View.VISIBLE : View.GONE);
|
||||
if (bind != null) bind.bioMoreTextViewClickable.setVisibility(artist.getLastfm() != null ? View.VISIBLE : View.GONE);
|
||||
|
||||
if (getContext() != null) CustomGlideRequest.Builder
|
||||
if (getContext() != null && bind != null) CustomGlideRequest.Builder
|
||||
.from(
|
||||
requireContext(),
|
||||
artistPageViewModel.getArtist().getId(),
|
||||
|
||||
Reference in New Issue
Block a user