From 3674b57211355307095b741b679b1bf7701e67b8 Mon Sep 17 00:00:00 2001 From: --global Date: Mon, 27 May 2024 11:00:52 +0700 Subject: [PATCH] hot-fix: members list always have to reload --- lib/pages/chat_details/chat_details.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/pages/chat_details/chat_details.dart b/lib/pages/chat_details/chat_details.dart index ff118811a1..d20fe425e1 100644 --- a/lib/pages/chat_details/chat_details.dart +++ b/lib/pages/chat_details/chat_details.dart @@ -147,6 +147,8 @@ class ChatDetailsController extends State }); room = Matrix.of(context).client.getRoomById(roomId!); muteNotifier.value = room?.pushRuleState ?? PushRuleState.notify; + membersNotifier.value ??= + Matrix.of(context).client.getRoomById(roomId!)!.getParticipants(); _listenForRoomMembersChanged(); }