fix chat messages not showing in the client

This commit is contained in:
RickyRister 2025-01-16 23:51:55 -08:00
parent cd373edf3d
commit 155350ad56

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);