diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-13 19:45:44 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-13 19:45:44 +0000 |
commit | cfba0c6c4d9a42a5384b61f109836783c0adc8a7 (patch) | |
tree | 79911a62bd2a4a020dd0795c905251bb45da9156 /protocols/SkypeWeb/src/skype_history_sync.cpp | |
parent | 1fba29f58dee5744dd0266b7368b5c004679c011 (diff) |
SkypeWeb: added removing html from messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@12795 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, 3 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp index 56ba691498..08bb862b7a 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -57,7 +57,9 @@ void CSkypeProto::OnGetServerHistory(const NETLIBHTTPREQUEST *response) ? FindContact(ptrA(ContactUrlToName(conversationLink)))
: FindContact(skypename);
- AddMessageToDb(hContact, timestamp, flags, clientMsgId, content, emoteOffset);
+ ptrA message(RemoveHtml(content));
+
+ AddMessageToDb(hContact, timestamp, flags, clientMsgId, message, emoteOffset);
}
}
}
|