From 155350ad56f1558417b607c42fba3aad92c13519 Mon Sep 17 00:00:00 2001 From: RickyRister Date: Thu, 16 Jan 2025 23:51:55 -0800 Subject: [PATCH] fix chat messages not showing in the client --- cockatrice/src/client/tabs/tab_room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/client/tabs/tab_room.cpp b/cockatrice/src/client/tabs/tab_room.cpp index 2b5185699..e9703bc1e 100644 --- a/cockatrice/src/client/tabs/tab_room.cpp +++ b/cockatrice/src/client/tabs/tab_room.cpp @@ -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);