Remove '#' from the room avatars

This commit is contained in:
Konstantinos Sideris 2018-01-25 18:10:05 +02:00
parent 67418e11b1
commit 597f829c57
1 changed files with 8 additions and 3 deletions

View File

@ -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();
}