mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #1119 from RetroPooh/chan-fix-cyr
fix cyrillic text sent wrong in channel post
This commit is contained in:
commit
0503f42d13
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user