Added media type checks for fan art and TheGamesDB box back covers to the multi-scraper.

This commit is contained in:
Leon Styhre 2022-01-15 18:29:38 +01:00
parent d343e785af
commit c2619fd520

View file

@ -1024,8 +1024,11 @@ void GuiScraperMenu::start()
contentToScrape = true;
break;
}
if (scraperService == "screenscraper" &&
Settings::getInstance()->getBool("ScrapeBackCovers")) {
if (Settings::getInstance()->getBool("ScrapeBackCovers")) {
contentToScrape = true;
break;
}
if (Settings::getInstance()->getBool("ScrapeFanArt")) {
contentToScrape = true;
break;
}