[Bandcamp] Fix featured albums not showing thumbnails

This commit is contained in:
Fynn Godau 2021-03-28 13:12:22 +02:00
parent dbcf61c6f7
commit d663be5a78
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ public class BandcampPlaylistInfoItemFeaturedExtractor implements PlaylistInfoIt
@Override
public String getThumbnailUrl() {
return featuredStory.has("art_id") ? getImageUrl(featuredStory.getLong("art_id"), true) : "";
return featuredStory.has("art_id") ? getImageUrl(featuredStory.getLong("art_id"), true)
: getImageUrl(featuredStory.getLong("item_art_id"), true);
}
}