diff options
Diffstat (limited to 'protocols/Steam/src/api/app_info.h')
-rw-r--r-- | protocols/Steam/src/api/app_info.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/api/app_info.h b/protocols/Steam/src/api/app_info.h index cf54e52adf..d8a187d444 100644 --- a/protocols/Steam/src/api/app_info.h +++ b/protocols/Steam/src/api/app_info.h @@ -3,10 +3,10 @@ struct GetAppInfoRequest : public HttpRequest { - GetAppInfoRequest(const char *token, const char *appIds) : + GetAppInfoRequest(const char *token, uint32_t appId) : HttpRequest(REQUEST_GET, "/ISteamGameOAuth/GetAppInfo/v0001") { - this << CHAR_PARAM("access_token", token) << CHAR_PARAM("appIds", appIds); + this << CHAR_PARAM("access_token", token) << INT_PARAM("appIds", appId); } //{ |