mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-30 20:15:38 +00:00
Fixed an issue where the scraper didn't log correctly that a folder was scraped.
This commit is contained in:
parent
64b440037e
commit
1f3e76389c
|
@ -41,7 +41,9 @@ std::unique_ptr<ScraperSearchHandle> startScraperSearch(const ScraperSearchParam
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogDebug) << "Scraper::startScraperSearch(): Scraping system \""
|
LOG(LogDebug) << "Scraper::startScraperSearch(): Scraping system \""
|
||||||
<< params.system->getName() << "\", game file \""
|
<< params.system->getName()
|
||||||
|
<< (params.game->getType() == FOLDER ? "\", folder \"" :
|
||||||
|
"\", game file \"")
|
||||||
<< params.game->getFileName() << "\"";
|
<< params.game->getFileName() << "\"";
|
||||||
scraper_request_funcs.at(name)(params, handle->mRequestQueue, handle->mResults);
|
scraper_request_funcs.at(name)(params, handle->mRequestQueue, handle->mResults);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue