diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-25 18:10:05 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-25 18:10:05 +0200 |
commit | 597f829c57adea24b4ff75260091b4a8f86f08c0 (patch) | |
tree | 25e396f305adf0bf0968f60eb7041f07fd7e62f2 | |
parent | Add missing processEvents call (diff) | |
download | nheko-597f829c57adea24b4ff75260091b4a8f86f08c0.tar.xz |
Remove '#' from the room avatars
-rw-r--r-- | src/Utils.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Utils.cc b/src/Utils.cc index 9d575c09..01f0b67e 100644 --- a/src/Utils.cc +++ b/src/Utils.cc @@ -123,8 +123,13 @@ utils::getMessageDescription(const TimelineEvent &event, const QString &localUse QString utils::firstChar(const QString &input) { - if (!input.isEmpty()) - return QString::fromUcs4(&input.toUcs4().at(0), 1); + if (input.isEmpty()) + return input; - return input; + for (auto const &c : input.toUcs4()) { + if (QString::fromUcs4(&c, 1) != QString("#")) + return QString::fromUcs4(&c, 1).toUpper(); + } + + return QString::fromUcs4(&input.toUcs4().at(0), 1).toUpper(); } |