From b0a90f6c607c6d52b9e2dbea07096136ce5bd10f Mon Sep 17 00:00:00 2001 From: Sude Date: Thu, 12 Oct 2017 00:23:15 +0300 Subject: [PATCH] Galaxy: Use en-US locale for product info --- src/galaxyapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/galaxyapi.cpp b/src/galaxyapi.cpp index 655153e..198b434 100644 --- a/src/galaxyapi.cpp +++ b/src/galaxyapi.cpp @@ -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;