diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-25 18:47:13 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-25 18:47:13 +0000 |
commit | f23e7ee1b67f42ad0d17dfde5ec91075205304a7 (patch) | |
tree | f71351dc2a03faea4548fd94eb888d4b81ca1191 /protocols/SkypeWeb/src/requests/chatrooms.h | |
parent | babe62f61852bb292c4eef1e64c316f21b789ef6 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@13145 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/requests/chatrooms.h')
-rw-r--r-- | protocols/SkypeWeb/src/requests/chatrooms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/requests/chatrooms.h b/protocols/SkypeWeb/src/requests/chatrooms.h index 8ef23481ce..87531bed1a 100644 --- a/protocols/SkypeWeb/src/requests/chatrooms.h +++ b/protocols/SkypeWeb/src/requests/chatrooms.h @@ -57,7 +57,7 @@ public: json_push_back(node, json_new_i("clientmessageid", timestamp));
json_push_back(node, json_new_a("messagetype", "RichText"));
json_push_back(node, json_new_a("contenttype", "text"));
- json_push_back(node, json_new_a("content", message));
+ json_push_back(node, json_new_a("content", ptrA(mir_utf8encode(message))));
json_push_back(node, json_new_i("skypeemoteoffset", 4));
ptrA data(mir_utf8encodeT(ptrT(json_write(node))));
|