diff --git a/src/renderer/main/vueapp.js b/src/renderer/main/vueapp.js index 6d64b082..d0f4c762 100644 --- a/src/renderer/main/vueapp.js +++ b/src/renderer/main/vueapp.js @@ -1702,7 +1702,7 @@ const app = new Vue({ this.page = "" const artistData = await this.mkapi("artists", false, id, { "views": "featured-release,full-albums,appears-on-albums,featured-albums,featured-on-albums,singles,compilation-albums,live-albums,latest-release,top-music-videos,similar-artists,top-songs,playlists,more-to-hear,more-to-see", - "extend": "artistBio,bornOrFormed,editorialArtwork,editorialVideo,isGroup,origin,hero", + "extend": "centeredFullscreenBackground,artistBio,bornOrFormed,editorialArtwork,editorialVideo,isGroup,origin,hero", "extend[playlists]": "trackCount", "include[songs]": "albums", "fields[albums]": "artistName,artistUrl,artwork,contentRating,editorialArtwork,editorialVideo,name,playParams,releaseDate,url,trackCount", diff --git a/src/renderer/views/pages/artist.ejs b/src/renderer/views/pages/artist.ejs index 84a282ae..c1c9ddb9 100644 --- a/src/renderer/views/pages/artist.ejs +++ b/src/renderer/views/pages/artist.ejs @@ -174,7 +174,9 @@ return false; }, hasHero() { - if(this.data.attributes?.editorialArtwork?.bannerUber) { + if(this.data.attributes?.editorialArtwork?.centeredFullscreenBackground){ + return this.data.attributes?.editorialArtwork?.centeredFullscreenBackground.url + } else if(this.data.attributes?.editorialArtwork?.bannerUber) { return this.data.attributes?.editorialArtwork?.bannerUber.url }else if(this.data.attributes?.editorialArtwork?.subscriptionHero){ return this.data.attributes?.editorialArtwork?.subscriptionHero.url