summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-04-23 02:29:41 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-04-23 02:29:55 +0200
commitd5e1475a5c9d9701d191456a577083a650941f92 (patch)
treec8f5141e4ff3aee0a7ec87c79528e3be83fd11a4
parent4720d2b562e97afde19138258e84b0d491137d95 (diff)
Fix encrypted messages not showing a user in the sidebar
-rw-r--r--CHANGELOG.md1
-rw-r--r--src/Utils.cpp5
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bdd4363c..779d5df6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@
- Fix crash when trying to maximize image, that wasn't downloaded yet.
- Fix Binding restorMode flooding logs on Qt 5.14.2+
- Fix with some qml styles hidden menu items leave empty space
+- Fix encrypted messages not showing a user in the sidebar
## [0.7.0] -- 2020-04-19
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<Encrypted>());
+ info.userid = sender;
+ info.body = QString(" %1").arg(
+ messageDescription<Encrypted>(username, "", sender == localUser));
info.timestamp = utils::descriptiveTime(ts);
info.event_id = QString::fromStdString(msg->event_id);
info.datetime = ts;