fix chat messages not showing in the client (#5489)

This commit is contained in:
RickyRister 2025-01-17 00:11:13 -08:00 committed by GitHub
parent cd373edf3d
commit 92a903b035
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -284,7 +284,7 @@ void TabRoom::processRoomSayEvent(const Event_RoomSay &event)
QString senderName = QString::fromStdString(event.name());
QString message = QString::fromStdString(event.message());
if (userListProxy->getOnlineUser(senderName))
if (userListProxy->isUserIgnored(senderName))
return;
UserListTWI *twi = userList->getUsers().value(senderName);