diff --git a/es-app/src/scrapers/ScreenScraper.cpp b/es-app/src/scrapers/ScreenScraper.cpp index 569fa62b5..aa46c1b5f 100644 --- a/es-app/src/scrapers/ScreenScraper.cpp +++ b/es-app/src/scrapers/ScreenScraper.cpp @@ -604,9 +604,9 @@ void ScreenScraperRequest::processMedia(ScraperSearchResult& result, (static_cast("media[@type='") + mediaType + "']").c_str()); if (results.size()) { - // Videos don't have any region attributes, so just take the first entry + // Videos and fan art don't have any region attributes, so just take the first entry // (which should be the only entry as well). - if (mediaType == "video" || mediaType == "video-normalized") { + if (mediaType == "video" || mediaType == "video-normalized" || mediaType == "fanart") { art = results.first().node(); } else {