mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
fix chat messages not showing in the client (#5489)
This commit is contained in:
parent
cd373edf3d
commit
92a903b035
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue