mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
Null checking
This commit is contained in:
parent
1b8b8a95bf
commit
8d6258017e
1 changed files with 1 additions and 1 deletions
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue