fix cyrillic text sent wrong in channel post

This commit is contained in:
RetroPooh 2017-11-29 19:23:52 +03:00
parent 63b3acb95a
commit 8ec69dfb72

View File

@ -630,7 +630,7 @@ void CreateGxsChannelMsg::sendMsg()
std::string subject = std::string(misc::removeNewLine(subjectEdit->text()).toUtf8());
QString text;
RsHtml::optimizeHtml(msgEdit, text);
std::string msg = text.toStdString();
std::string msg = std::string(text.toUtf8());
std::list<RsGxsFile> files;