diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-14 16:09:42 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-14 16:09:42 +0300 |
commit | e183822028662cdd47d31c5f23fd9842c32cba6a (patch) | |
tree | 1180fc5086c3b9866afcb11c2aff47f4044143a4 /protocols/ICQ-WIM/src/server.cpp | |
parent | 97c6db0e798e6ac5cfd0e95b3224b2fae6b026d2 (diff) |
fixes #4278 (ICQ: add "about" field support in my own user info)
Diffstat (limited to 'protocols/ICQ-WIM/src/server.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/ICQ-WIM/src/server.cpp b/protocols/ICQ-WIM/src/server.cpp index abba88aa22..506b0651fb 100644 --- a/protocols/ICQ-WIM/src/server.cpp +++ b/protocols/ICQ-WIM/src/server.cpp @@ -386,6 +386,7 @@ MCONTACT CIcqProto::ParseBuddyInfo(const JSONNode &buddy, MCONTACT hContact, boo Contact::PutOnList(hContact);
}
+ Json2string(hContact, buddy, "about", "About", bIsPartial);
Json2string(hContact, buddy, "emailId", "Email", bIsPartial);
Json2string(hContact, buddy, "cellNumber", "Cellular", bIsPartial);
Json2string(hContact, buddy, "workNumber", "CompanyPhone", bIsPartial);
|