mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
Compare commits
1 commit
83a8d1afad
...
2f282a48f4
Author | SHA1 | Date | |
---|---|---|---|
|
2f282a48f4 |
1 changed files with 2 additions and 3 deletions
|
@ -20,8 +20,6 @@
|
|||
#include <QVideoFrame>
|
||||
#include <QVideoSink>
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
#include <mtx/responses/common.hpp>
|
||||
|
@ -580,7 +578,8 @@ InputBar::message(const QString &msg, MarkdownOverride useMarkdown, bool rainbow
|
|||
}
|
||||
}
|
||||
|
||||
text.body = fmt::format("{}\n{}", body.toStdString(), text.body);
|
||||
text.body =
|
||||
QStringLiteral("%1\n%2").arg(body, QString::fromStdString(text.body)).toStdString();
|
||||
|
||||
// NOTE(Nico): rich replies always need a formatted_body!
|
||||
text.format = "org.matrix.custom.html";
|
||||
|
|
Loading…
Reference in a new issue