diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-03-04 12:05:55 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-03-04 12:05:55 +0000 |
commit | 26f28c7c13ef5ad4ef6986181f1ef4f46b85c627 (patch) | |
tree | d3ad64d946dd8ab0b3b2b5e18ee35789dc5cc0b7 /protocols/FacebookRM/src/proto.cpp | |
parent | b8f9685565a64b1d04d545bfa1ffead2a84547cc (diff) |
Facebook: Unify showing "seen info" for groupchats with classic contacts
This also fixes not showing loaded "seen info" when opening groupchat message window again
git-svn-id: http://svn.miranda-ng.org/main/trunk@12313 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/proto.cpp')
-rw-r--r-- | protocols/FacebookRM/src/proto.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/proto.cpp b/protocols/FacebookRM/src/proto.cpp index c8244b87e7..47b34e8b39 100644 --- a/protocols/FacebookRM/src/proto.cpp +++ b/protocols/FacebookRM/src/proto.cpp @@ -1109,7 +1109,19 @@ void FacebookProto::MessageRead(MCONTACT hContact) StatusTextData st = { 0 }; st.cbSize = sizeof(st); st.hIcon = Skin_GetIconByHandle(GetIconHandle("read")); - mir_sntprintf(st.tszText, SIZEOF(st.tszText), TranslateT("Message read: %s"), ttime); + + if (isChatRoom(hContact)) { + // Get threadId to find chatroom in map + std::tstring tid = ptrT(getTStringA(hContact, FACEBOOK_KEY_TID)); + std::map<std::tstring, facebook_chatroom*>::iterator it = facy.chat_rooms.find(tid); + + // Get readers from chatroom + TCHAR *treaders = (it != facy.chat_rooms.end() ? it->second->message_readers.c_str() : _T("???")); + + mir_sntprintf(st.tszText, SIZEOF(st.tszText), TranslateT("Message read: %s by %s"), ttime, treaders); + } else { + mir_sntprintf(st.tszText, SIZEOF(st.tszText), TranslateT("Message read: %s"), ttime); + } CallService(MS_MSG_SETSTATUSTEXT, (WPARAM)hContact, (LPARAM)&st); } |