fix: resolve /live channel liveness using their channel ID (#5172)

This commit is contained in:
KleberPF
2024-02-17 08:22:49 -03:00
committed by GitHub
parent 4a5d4ef3fa
commit 3cdb7bf4f6
3 changed files with 6 additions and 4 deletions
@@ -227,7 +227,8 @@ void NotificationController::removeFakeChannel(const QString channelName)
{
const auto &s = snapshot[i];
if (s->messageText == liveMessageSearchText)
if (QString::compare(s->messageText, liveMessageSearchText,
Qt::CaseInsensitive) == 0)
{
s->flags.set(MessageFlag::Disabled);
break;