diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-11-03 03:28:16 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-11-23 20:06:15 +0100 |
commit | 88dc72df4f7cd6cabdb48866e6030f5e506eb24f (patch) | |
tree | 58b8752b724ef1bd213cf8a9a61c08fa44399bd9 /src | |
parent | Make user clickable and improve button cursor look (diff) | |
download | nheko-88dc72df4f7cd6cabdb48866e6030f5e506eb24f.tar.xz |
Enable link handling
Diffstat (limited to 'src')
-rw-r--r-- | src/timeline2/TimelineModel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/timeline2/TimelineModel.cpp b/src/timeline2/TimelineModel.cpp index fa87ec26..bdb3ea6f 100644 --- a/src/timeline2/TimelineModel.cpp +++ b/src/timeline2/TimelineModel.cpp @@ -827,6 +827,7 @@ TimelineModel::replyAction(QString id) [](const auto &e) -> std::string { return eventMsgType(e); }, event)); related.quoted_body = boost::apply_visitor([](const auto &e) -> QString { return eventBody(e); }, event); + related.room = room_id_; if (related.quoted_body.isEmpty()) return; |