mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-01 04:14:33 -04:00
fix cyrillic text sent wrong in channel post
This commit is contained in:
parent
63b3acb95a
commit
8ec69dfb72
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue