diff options
| author | George Hazan <george.hazan@gmail.com> | 2023-06-15 19:18:04 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2023-06-15 19:18:04 +0300 |
| commit | 4a2a1a80bc29ec2dc13e8dd053671431eb36fe2a (patch) | |
| tree | 24a8d499cbbdaa1e998b289eebce7e918fda8fdc /protocols/Steam/src/steam_history.cpp | |
| parent | d85347f1f2028afb685142a776f2af4473de8273 (diff) | |
Steam: complete login sequence (though always gives us "Invalid password" error)
Diffstat (limited to 'protocols/Steam/src/steam_history.cpp')
| -rw-r--r-- | protocols/Steam/src/steam_history.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |
