diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp
index 493f755bf56d982e1f63f6a9a7fe64c2d45c31b8..b6ebeb84456da937704bcccf1cda16ce2b40d88f 100644
--- a/src/timeline/TimelineModel.cpp
+++ b/src/timeline/TimelineModel.cpp
@@ -1536,6 +1536,9 @@ TimelineModel::formatMemberEvent(QString id)
 void
 TimelineModel::setEdit(QString newEdit)
 {
+        if (edit_.startsWith('m'))
+                return;
+
         if (edit_ != newEdit) {
                 auto ev = events.get(newEdit.toStdString(), "");
                 if (ev && mtx::accessors::sender(*ev) == http::client()->user_id().to_string()) {
diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h
index 017b65895b1cbc95bd9e51b66d41e38246173a56..83012cd8fee8d2146dd4a6d2efb1f55f9e457423 100644
--- a/src/timeline/TimelineModel.h
+++ b/src/timeline/TimelineModel.h
@@ -260,6 +260,9 @@ public slots:
         QString reply() const { return reply_; }
         void setReply(QString newReply)
         {
+                if (edit_.startsWith('m'))
+                        return;
+
                 if (reply_ != newReply) {
                         reply_ = newReply;
                         emit replyChanged(reply_);