diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-25 12:58:13 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-25 12:58:13 +0000 |
commit | c9e610c405ec66764de279ff797ffa48964936be (patch) | |
tree | 48b5035d4afabfc7a3a00b0c9030b4baae5fd80e /protocols/SkypeWeb/src/skype_history_sync.cpp | |
parent | 419ee3af2ba3f822b6cbd01ebaf29c10e3bcc039 (diff) |
SkypeWeb: Contacts receiving
git-svn-id: http://svn.miranda-ng.org/main/trunk@15028 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_history_sync.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_history_sync.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp index 03c786cfe3..2dc48c65b9 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -93,6 +93,10 @@ void CSkypeProto::OnGetServerHistory(const NETLIBHTTPREQUEST *response) {
AddDbEvent(SKYPE_DB_EVENT_TYPE_URIOBJ, hContact, timestamp, iFlags, content.c_str(), szMessageId);
}
+ else if (messageType == "RichText/Contacts")
+ {
+ ProcessContactRecv(hContact, timestamp, content.c_str(), szMessageId);
+ }
else
{
AddDbEvent(SKYPE_DB_EVENT_TYPE_UNKNOWN, hContact, timestamp, iFlags, content.c_str(), szMessageId);
|