mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-01-31 14:43:36 +00:00
Fix item image visualization
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user