Fix isMuted in chat list item

onboarding
Christian Pauly 5 years ago
parent cc1b089c73
commit 03a29ae296

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

Loading…
Cancel
Save