1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp
index a8e13521..c110aa18 100644
--- a/src/Utils.cpp
+++ b/src/Utils.cpp
@@ -70,7 +70,7 @@ utils::stripReplyFromFormattedBody(const std::string &formatted_bodyi)
QString formatted_body = QString::fromStdString(formatted_bodyi);
formatted_body.remove(QRegularExpression("<mx-reply>.*</mx-reply>",
QRegularExpression::DotMatchesEverythingOption));
- formatted_body.replace("@room", "@\u2060aroom");
+ formatted_body.replace("@room", "@\u2060room");
return formatted_body.toStdString();
}
|