From d5e1475a5c9d9701d191456a577083a650941f92 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Thu, 23 Apr 2020 02:29:41 +0200 Subject: Fix encrypted messages not showing a user in the sidebar --- src/Utils.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/Utils.cpp') diff --git a/src/Utils.cpp b/src/Utils.cpp index 33b75894..46472401 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -179,8 +179,9 @@ utils::getMessageDescription(const TimelineEvent &event, const auto ts = QDateTime::fromMSecsSinceEpoch(msg->origin_server_ts); DescInfo info; - info.userid = sender; - info.body = QString(" %1").arg(messageDescription()); + info.userid = sender; + info.body = QString(" %1").arg( + messageDescription(username, "", sender == localUser)); info.timestamp = utils::descriptiveTime(ts); info.event_id = QString::fromStdString(msg->event_id); info.datetime = ts; -- cgit 1.5.1