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:
commit
e4c96e54f1
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue