From 92a903b035d6c549e317a55c5e39858299ec44a6 Mon Sep 17 00:00:00 2001 From: RickyRister <42636155+RickyRister@users.noreply.github.com> Date: Fri, 17 Jan 2025 00:11:13 -0800 Subject: [PATCH] fix chat messages not showing in the client (#5489) --- 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);