summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2014-03-01 12:23:33 +0000
committerRobert Pösel <robyer@seznam.cz>2014-03-01 12:23:33 +0000
commitcdf527e3ab1f351cc0c02d7548f4814be2776960 (patch)
tree1751bf6b3ca5fc2336fd73c4d4546b724e75fee7 /protocols/FacebookRM
parent86b1b6ce63017e4c61931dbea02f58f499cceae0 (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.cpp2
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.")));
}
}
}