Merge branch 'ChristianPauly-master-patch-70791' into 'master'

Fix isMuted in chat list item

See merge request ChristianPauly/fluffychat-flutter!131
This commit is contained in:
Christian Pauly 2020-08-13 11:13:35 +00:00
commit 87e72f40b1
1 changed files with 1 additions and 1 deletions

View File

@ -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,