From 4504ce42b759ab1feb4611959984f9b64ae88034 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 13 Aug 2020 11:02:58 +0000 Subject: [PATCH] Fix isMuted in chat list item --- lib/components/list_items/chat_list_item.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/list_items/chat_list_item.dart b/lib/components/list_items/chat_list_item.dart index 9556a49..27de834 100644 --- a/lib/components/list_items/chat_list_item.dart +++ b/lib/components/list_items/chat_list_item.dart @@ -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,