diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-29 23:27:54 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-29 23:27:54 +0300 |
commit | 465b96a89b55690dff100791ea248f2ed755a190 (patch) | |
tree | a39d26d88671223763ee102b826eaceba5e25c25 /protocols/Icq10/src | |
parent | 34ecd2b64d14de32d92d338fb76c746d2663e489 (diff) |
fix for a typo
Diffstat (limited to 'protocols/Icq10/src')
-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 f8736ee245..5312c4e880 100644 --- a/protocols/Icq10/src/server.cpp +++ b/protocols/Icq10/src/server.cpp @@ -38,7 +38,7 @@ void CIcqProto::CheckAvatarChange(MCONTACT hContact, const JSONNode &ev) void CIcqProto::CheckNickChange(MCONTACT hContact, const JSONNode &ev) { - CMStringW wszNick(ev["friendlyName"].as_mstring()); + CMStringW wszNick(ev["profile"]["friendlyName"].as_mstring()); if (wszNick.IsEmpty()) wszNick = ev["friendly"].as_mstring(); if (!wszNick.IsEmpty()) |