From 4a2a1a80bc29ec2dc13e8dd053671431eb36fe2a Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 15 Jun 2023 19:18:04 +0300 Subject: Steam: complete login sequence (though always gives us "Invalid password" error) --- protocols/Steam/src/steam_history.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/Steam/src/steam_history.cpp') diff --git a/protocols/Steam/src/steam_history.cpp b/protocols/Steam/src/steam_history.cpp index cb2725f31a..eb5df8d8c1 100644 --- a/protocols/Steam/src/steam_history.cpp +++ b/protocols/Steam/src/steam_history.cpp @@ -22,7 +22,7 @@ void CSteamProto::OnGotConversations(const JSONNode &root, void *) time_t lastMessageTS = _wtoi64(session["last_message"].as_mstring()); if (lastMessageTS > storedMessageTS) { ptrA token(getStringA("TokenSecret")); - ptrA steamId(getStringA("SteamID")); + ptrA steamId(getStringA(DBKEY_STEAM_ID)); SendRequest(new GetHistoryMessagesRequest(token, steamId, who, storedMessageTS), &CSteamProto::OnGotHistoryMessages, (void*)hContact); } } -- cgit v1.2.3