Galaxy: Use en-US locale for product info

This commit is contained in:
Sude 2017-10-12 00:23:15 +03:00
parent eee162177f
commit b0a90f6c60

View File

@ -259,7 +259,7 @@ Json::Value galaxyAPI::getProductInfo(const std::string& product_id)
{
Json::Value json;
std::string url = "https://api.gog.com/products/" + product_id + "?expand=downloads,expanded_dlcs,description,screenshots,videos,related_products,changelog";
std::string url = "https://api.gog.com/products/" + product_id + "?expand=downloads,expanded_dlcs,description,screenshots,videos,related_products,changelog&locale=en-US";
std::string response = this->getResponse(url);
Json::Reader *jsonparser = new Json::Reader;