summaryrefslogtreecommitdiffstats
path: root/src/Utils.h
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2019-12-15 02:56:04 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2019-12-15 02:56:04 +0100
commit5fc1f3bd678cca690268eafbb7e4595657a6e133 (patch)
treeed88e9c771494672045d16aca6831b3fde40d112 /src/Utils.h
parent7d6a015f36625269fe4d11e3c08c93f4d72c0976 (diff)
Reduce overhead of Cache.h
Diffstat (limited to 'src/Utils.h')
-rw-r--r--src/Utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.h b/src/Utils.h
index 6c0cf0dd..aa62b8e7 100644
--- a/src/Utils.h
+++ b/src/Utils.h
@@ -168,7 +168,7 @@ createDescriptionInfo(const Event &event, const QString &localUser, const QStrin
const auto msg = std::get<T>(event);
const auto sender = QString::fromStdString(msg.sender);
- const auto username = Cache::displayName(room_id, sender);
+ const auto username = cache::displayName(room_id, sender);
const auto ts = QDateTime::fromMSecsSinceEpoch(msg.origin_server_ts);
return DescInfo{QString::fromStdString(msg.event_id),