1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp
index 2c58e2f5..e3d87ae6 100644
--- a/src/timeline/TimelineModel.cpp
+++ b/src/timeline/TimelineModel.cpp
@@ -505,8 +505,8 @@ TimelineModel::data(const QModelIndex &index, int role) const
case FormattedBody:
return QVariant(
utils::replaceEmoji(
- boost::apply_visitor(
- [](const auto &e) -> QString { return eventFormattedBody(e); }, event))
+ utils::linkifyMessage(boost::apply_visitor(
+ [](const auto &e) -> QString { return eventFormattedBody(e); }, event)))
.remove("<mx-reply>")
.remove("</mx-reply>"));
case Url:
|