2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-06-13 13:27:25 +02:00

Fix isMuted in chat list item

This commit is contained in:
Christian Pauly 2020-08-13 11:02:58 +00:00
parent 78c660ebc2
commit 4504ce42b7

@ -129,7 +129,7 @@ class ChatListItem extends StatelessWidget {
@override
Widget build(BuildContext context) {
final isMuted = room.pushRuleState == PushRuleState.notify;
final isMuted = room.pushRuleState != PushRuleState.notify;
final slideableKey = GlobalKey();
return Slidable(
key: slideableKey,