diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-29 21:02:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-29 21:02:50 +0300 |
commit | 8b5aedc9a9697f4138017fd0ecb40b5a6fcbc279 (patch) | |
tree | 7f42ca7f677aa037d3bcb669f31b3cf01c5f58bd /protocols | |
parent | f5c0b6951727dacee2fce60421cb23f7dd5e3adc (diff) |
fixes #1690 (Tipper shows wrong ICQ10 online time)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Icq10/src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Icq10/src/server.cpp b/protocols/Icq10/src/server.cpp index b3edc38b04..39a74bdfd1 100644 --- a/protocols/Icq10/src/server.cpp +++ b/protocols/Icq10/src/server.cpp @@ -94,7 +94,7 @@ MCONTACT CIcqProto::ParseBuddyInfo(const JSONNode &buddy) int lastLogin = buddy["lastseen"].as_int(); if (lastLogin) - setDword(hContact, "LoginTS", lastLogin); + setDword(hContact, "LastSeen", lastLogin); str = buddy["statusMsg"].as_mstring(); if (str.IsEmpty()) |