diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-08-05 12:36:30 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-08-05 12:36:30 +0000 |
commit | 1d9e3c88c6a4930241d82812c299a31b739c1aa6 (patch) | |
tree | 7e5a1f8f95b6e96ebe12d11048e5b6268b146e9e /protocols/FacebookRM/src/json.cpp | |
parent | b6ac8ac0f0c3890fb5683328a2d309d62a4fe4a4 (diff) |
Facebook: utf8 fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5590 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/json.cpp')
-rw-r--r-- | protocols/FacebookRM/src/json.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/json.cpp b/protocols/FacebookRM/src/json.cpp index 311150c385..b7570bae9a 100644 --- a/protocols/FacebookRM/src/json.cpp +++ b/protocols/FacebookRM/src/json.cpp @@ -311,7 +311,7 @@ void parseAttachments(FacebookProto *proto, std::string *message_text, JSONNODE char title[200];
mir_snprintf(title, SIZEOF(title), Translate("User sent you %s:"), type.c_str());
- *message_text += title;
+ *message_text += ptrA(mir_utf8encode(title));
*message_text += attachments_text;
}
}
|