From a17538fc10c6dc15cf4585a10a59bc45f35654fa Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 25 Dec 2024 13:48:29 +0300 Subject: fixes #4811 (Steam: Add now playing game title support) --- protocols/Steam/src/api/app_info.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/Steam/src/api/app_info.h') 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); } //{ -- cgit v1.2.3