summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-08-19 18:26:05 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-08-20 14:00:35 +0200
commitb63289ba54edcaced8cb6dc68cec815584650f7f (patch)
tree7c0141cdda0f458c7b7bf6832a2d8d0b8e22e6c2 /src
parentTranslated using Weblate (Estonian) (diff)
downloadnheko-b63289ba54edcaced8cb6dc68cec815584650f7f.tar.xz
Cleanup @room escape logic a bit
Diffstat (limited to 'src')
-rw-r--r--src/Utils.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp

index 41013e39..3f524c6c 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp
@@ -64,6 +64,8 @@ utils::stripReplyFromBody(const std::string &bodyi) body.remove(plainQuote); if (body.startsWith("\n")) body.remove(0, 1); + + body.replace("@room", QString::fromUtf8("@\u2060room")); return body.toStdString(); } @@ -73,7 +75,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", "@\u2060room"); + formatted_body.replace("@room", QString::fromUtf8("@\u2060room")); return formatted_body.toStdString(); } @@ -91,7 +93,6 @@ utils::stripReplyFallbacks(const TimelineEvent &event, std::string id, QString r related.quoted_body = QString::fromStdString(stripReplyFromBody(related.quoted_body.toStdString())); related.quoted_body = utils::getQuoteBody(related); - related.quoted_body.replace("@room", QString::fromUtf8("@\u2060room")); // get quoted body and strip reply fallback related.quoted_formatted_body = mtx::accessors::formattedBodyWithFallback(event);