thegamesdb legacy API fix

thegamesdb.net changed their api but kept the legacy one here;

legacy.gamesdb.net

changed
This commit is contained in:
[BB] 2018-08-12 19:56:25 +01:00
parent 646bede3d9
commit 71daa490b6

View file

@ -67,7 +67,7 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map = boost::assign::
void thegamesdb_generate_scraper_requests(const ScraperSearchParams& params, std::queue< std::unique_ptr<ScraperRequest> >& requests,
std::vector<ScraperSearchResult>& results)
{
std::string path = "thegamesdb.net/api/GetGame.php?";
std::string path = "legacy.thegamesdb.net/api/GetGame.php?";
std::string cleanName = params.nameOverride;
if(cleanName.empty())