summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/api/login.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Steam/src/api/login.h')
-rw-r--r--protocols/Steam/src/api/login.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/api/login.h b/protocols/Steam/src/api/login.h
index d9511c4752..ece955840d 100644
--- a/protocols/Steam/src/api/login.h
+++ b/protocols/Steam/src/api/login.h
@@ -5,7 +5,7 @@ class LogonRequest : public HttpRequest
{
public:
LogonRequest(const char *token) :
- HttpRequest(REQUEST_POST, STEAM_API_URL "/ISteamWebUserPresenceOAuth/Logon/v0001")
+ HttpRequest(REQUEST_POST, "/ISteamWebUserPresenceOAuth/Logon/v0001")
{
char data[256];
mir_snprintf(data, "access_token=%s&ui_mode=web", token);
@@ -31,7 +31,7 @@ class LogoffRequest : public HttpRequest
{
public:
LogoffRequest(const char *token, const char *umqId) :
- HttpRequest(REQUEST_POST, STEAM_API_URL "/ISteamWebUserPresenceOAuth/Logoff/v0001")
+ HttpRequest(REQUEST_POST, "/ISteamWebUserPresenceOAuth/Logoff/v0001")
{
this
<< CHAR_PARAM("access_token", token)