summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/api/app_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Steam/src/api/app_info.h')
-rw-r--r--protocols/Steam/src/api/app_info.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/protocols/Steam/src/api/app_info.h b/protocols/Steam/src/api/app_info.h
index 7aeb26f9d4..b4c2618249 100644
--- a/protocols/Steam/src/api/app_info.h
+++ b/protocols/Steam/src/api/app_info.h
@@ -5,11 +5,9 @@ class GetAppInfoRequest : public HttpRequest
{
public:
GetAppInfoRequest(const char *token, const char *appIds) :
- HttpRequest(HttpGet, STEAM_API_URL "/ISteamGameOAuth/GetAppInfo/v0001")
+ HttpRequest(REQUEST_GET, STEAM_API_URL "/ISteamGameOAuth/GetAppInfo/v0001")
{
- Uri
- << CHAR_PARAM("access_token", token)
- << CHAR_PARAM("appIds", appIds);
+ this << CHAR_PARAM("access_token", token) << CHAR_PARAM("appIds", appIds);
}
//{