Fix item image visualization

This commit is contained in:
CappielloAntonio 2021-07-27 17:23:14 +02:00
parent 7742cbdd08
commit a21a051cb5
6 changed files with 9 additions and 7 deletions

View file

@ -56,7 +56,7 @@ public class Artist implements Parcelable {
public Artist(ArtistID3 artistID3) {
this.id = artistID3.getId();
this.name = artistID3.getName();
this.primary = artistID3.getCoverArtId();
this.primary = artistID3.getCoverArtId() != null ? artistID3.getCoverArtId() : artistID3.getId();
this.backdrop = artistID3.getCoverArtId();
}