diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-03-01 12:23:33 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-03-01 12:23:33 +0000 |
commit | cdf527e3ab1f351cc0c02d7548f4814be2776960 (patch) | |
tree | 1751bf6b3ca5fc2336fd73c4d4546b724e75fee7 /protocols/FacebookRM | |
parent | 86b1b6ce63017e4c61931dbea02f58f499cceae0 (diff) |
Facebook: Fix encoding of "unsupported attachment" message
git-svn-id: http://svn.miranda-ng.org/main/trunk@8344 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM')
-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 ad651a6bc5..7a06f5099f 100644 --- a/protocols/FacebookRM/src/json.cpp +++ b/protocols/FacebookRM/src/json.cpp @@ -347,7 +347,7 @@ void parseAttachments(FacebookProto *proto, std::string *message_text, JSONNODE *message_text += attachments_text;
} else {
// TODO: better support for these attachments (parse it from "m_messaging" instead of "messaging"
- *message_text += Translate("User sent you an unsupported attachment. Open your browser to see it.");
+ *message_text += ptrA(mir_utf8encodeT(TranslateT("User sent you an unsupported attachment. Open your browser to see it.")));
}
}
}
|