diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-12-22 19:00:27 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-12-22 19:00:27 +0000 |
commit | ac8bed8f05473bf773b9729d5acef4b49dde3682 (patch) | |
tree | e4acef721054ef0fa89676061147e2bba9b6baf1 /protocols/Steam/src/steam_polling.cpp | |
parent | f5e9122078e308f4b9dfa70b4f160056fae95c19 (diff) |
Steam: Various fixes to loading offline messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@15933 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_polling.cpp')
-rw-r--r-- | protocols/Steam/src/steam_polling.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Steam/src/steam_polling.cpp b/protocols/Steam/src/steam_polling.cpp index eadade3d99..bbc05e1451 100644 --- a/protocols/Steam/src/steam_polling.cpp +++ b/protocols/Steam/src/steam_polling.cpp @@ -216,10 +216,10 @@ void CSteamProto::PollingThread(void*) if (!lstrcmpi(error, _T("OK"))) { // Remember last message timestamp - node = json_get(root, "timestamp"); - time_t lastMessageTS = _ttoi64(ptrT(json_as_string(node))); - if (lastMessageTS > getDword("LastMessageTS", 0)) - setDword("LastMessageTS", lastMessageTS); + node = json_get(root, "utc_timestamp"); + time_t timestamp = _ttoi64(ptrT(json_as_string(node))); + if (timestamp > getDword("LastMessageTS", 0)) + setDword("LastMessageTS", timestamp); node = json_get(root, "messagelast"); messageId = json_as_int(node); |