diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2020-03-25 06:02:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 06:02:14 +0000 |
commit | e389588bc2f8cbfb2d5c73e82962ba8522d47984 (patch) | |
tree | f9e9c864ae6aa5a743ed7cc41d97998ac5d204b0 | |
parent | Merge pull request #156 from abma/patch-1 (diff) | |
parent | Removed double-sanitization of ... is typing names (diff) | |
download | nheko-e389588bc2f8cbfb2d5c73e82962ba8522d47984.tar.xz |
Merge pull request #157 from Alch-Emi/no-escape
Removed double-sanitization of names in "... is typing" messages
Diffstat (limited to '')
-rw-r--r-- | src/timeline/TimelineModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index ef01f068..84dd9885 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -1443,7 +1443,7 @@ TimelineModel::formatTypingUsers(const std::vector<QString> &users, QColor bg) QStringList uidWithoutLast; auto formatUser = [this, bg](const QString &user_id) -> QString { - auto uncoloredUsername = escapeEmoji(displayName(user_id).toHtmlEscaped()); + auto uncoloredUsername = escapeEmoji(displayName(user_id)); QString prefix = QString("<font color=\"%1\">").arg(manager_->userColor(user_id, bg).name()); |