Fix isMuted in chat list item
This commit is contained in:
parent
cc1b089c73
commit
03a29ae296
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue