diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-12-01 13:32:34 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-12-01 13:32:34 +0000 |
commit | 0daeae053e576727cf7132e947efcbab17b4962a (patch) | |
tree | 059d6b4a56dc7de9a438d248750e94beaa7fd08f /protocols/FacebookRM/src/json.cpp | |
parent | 78ac37cc16584eecb54258bf68fe2eee4385b2a2 (diff) |
Facebook: Some other changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@11198 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/json.cpp')
-rw-r--r-- | protocols/FacebookRM/src/json.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/json.cpp b/protocols/FacebookRM/src/json.cpp index 445d1e767d..4c24b138b8 100644 --- a/protocols/FacebookRM/src/json.cpp +++ b/protocols/FacebookRM/src/json.cpp @@ -473,12 +473,14 @@ int facebook_json_parser::parse_messages(void* data, std::vector< facebook_messa participant = participants.find(reader_id); if (participant != participants.end()) { - MCONTACT hChatContact = proto->ChatIDToHContact(tid); - if (!chatroom->message_readers.empty()) chatroom->message_readers += ", "; chatroom->message_readers += participant->second; + MCONTACT hChatContact = proto->ChatIDToHContact(tid); + if (!hChatContact) + continue; + ptrT readers(mir_utf8decodeT(chatroom->message_readers.c_str())); StatusTextData st = { 0 }; |