From 27fe0a45b634d59a88fdb97cab4c0b6ab9009bf3 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Thu, 11 Mar 2021 19:56:30 +0100 Subject: [PATCH] Disable room pings in replies --- src/timeline/TimelineModel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index 7afc75f7..ddec7287 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -883,11 +883,13 @@ TimelineModel::relatedInfo(QString id) if (related.quoted_body.startsWith("\n")) related.quoted_body.remove(0, 1); 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); related.quoted_formatted_body.remove(QRegularExpression( ".*", QRegularExpression::DotMatchesEverythingOption)); + related.quoted_formatted_body.replace("@room", "@\u2060aroom"); related.room = room_id_; return related;