mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-26 23:36:59 -05: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());
|
std::string subject = std::string(misc::removeNewLine(subjectEdit->text()).toUtf8());
|
||||||
QString text;
|
QString text;
|
||||||
RsHtml::optimizeHtml(msgEdit, text);
|
RsHtml::optimizeHtml(msgEdit, text);
|
||||||
std::string msg = text.toStdString();
|
std::string msg = std::string(text.toUtf8());
|
||||||
|
|
||||||
std::list<RsGxsFile> files;
|
std::list<RsGxsFile> files;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user