diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-30 20:05:40 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-30 20:05:40 +0000 |
commit | 5851536bf2c79d9c7a7ffb4edb69b6a0f6305f9f (patch) | |
tree | e19260852ae696534012279e0cabc5b75bbaf1b3 /protocols/SkypeWeb/src/requests/chatrooms.h | |
parent | 4175d475a610d2ed581116a960a77df4efe6890d (diff) |
SkypeWeb: More fixes...
git-svn-id: http://svn.miranda-ng.org/main/trunk@13911 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/requests/chatrooms.h')
-rw-r--r-- | protocols/SkypeWeb/src/requests/chatrooms.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/requests/chatrooms.h b/protocols/SkypeWeb/src/requests/chatrooms.h index 84b58e68e9..905f6afd47 100644 --- a/protocols/SkypeWeb/src/requests/chatrooms.h +++ b/protocols/SkypeWeb/src/requests/chatrooms.h @@ -52,7 +52,7 @@ public: node.push_back(JSONNode("clientmessageid", (long)timestamp));
node.push_back(JSONNode("messagetype", "RichText"));
node.push_back(JSONNode("contenttype", "text"));
- node.push_back(JSONNode("content", (char*)ptrA(mir_utf8encode(message))));
+ node.push_back(JSONNode("content", message));
Body << VALUE(node.write().c_str());
}
@@ -73,7 +73,7 @@ public: node.push_back(JSONNode("clientmessageid", (long)timestamp));
node.push_back(JSONNode("messagetype", "RichText"));
node.push_back(JSONNode("contenttype", "text"));
- node.push_back(JSONNode("content", (char*)ptrA(mir_utf8encode(message))));
+ node.push_back(JSONNode("content", message));
node.push_back(JSONNode("skypeemoteoffset", 4));
Body << VALUE(node.write().c_str());
|