mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-09-01 23:15:59 +00:00
Replaced some qstr with u""_q literal.
This commit is contained in:
@@ -1620,7 +1620,8 @@ void Stickers::newSetReceived(const MTPDmessages_stickerSet &set) {
|
||||
|
||||
QString Stickers::getSetTitle(const MTPDstickerSet &s) {
|
||||
auto title = qs(s.vtitle());
|
||||
if ((s.vflags().v & MTPDstickerSet::Flag::f_official) && !title.compare(qstr("Great Minds"), Qt::CaseInsensitive)) {
|
||||
if ((s.vflags().v & MTPDstickerSet::Flag::f_official)
|
||||
&& !title.compare(u"Great Minds"_q, Qt::CaseInsensitive)) {
|
||||
return tr::lng_stickers_default_set(tr::now);
|
||||
}
|
||||
return title;
|
||||
|
Reference in New Issue
Block a user