diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-03 10:11:14 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-03 10:11:14 +0000 |
commit | da3be6494951bc5cd88641f026cbddbf58fcc089 (patch) | |
tree | 9363b6fdc5c799ebc351a115aa5cf0eec00217c2 | |
parent | f4ef5c3908e1a4ac3c32c0b92bea8e6db5bce618 (diff) |
receiving messages fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12586 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/SkypeWeb/src/skype_poll_processing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_poll_processing.cpp b/protocols/SkypeWeb/src/skype_poll_processing.cpp index 1615b13c5c..803e37d5b0 100644 --- a/protocols/SkypeWeb/src/skype_poll_processing.cpp +++ b/protocols/SkypeWeb/src/skype_poll_processing.cpp @@ -85,7 +85,7 @@ void CSkypeProto::ProcessNewMessageRes(JSONNODE *node) ptrA conversationLink(mir_t2a(ptrT(json_as_string(json_get(node, "conversationLink")))));
time_t timeStamp = IsoToUnixTime(composeTime);//time(NULL); // it should be rewritten
- if (!mir_strcmpi(messagetype, "Text")) {
+ if (!mir_strcmpi(messagetype, "Text") || !mir_strcmpi(messagetype, "RichText")) {
PROTORECVEVENT recv = { 0 };
recv.flags = PREF_UTF;
recv.timestamp = timeStamp;
|