From 1138012dd16b126955e518b0772bc2be3a79013b Mon Sep 17 00:00:00 2001 From: td Date: Wed, 4 Jan 2023 03:36:51 +0530 Subject: [PATCH] fix: propogate filter to getParticipants in requestParticipants --- lib/src/room.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/room.dart b/lib/src/room.dart index 5854bb8c..113009e5 100644 --- a/lib/src/room.dart +++ b/lib/src/room.dart @@ -1509,7 +1509,7 @@ class Room { // Do not request users from the server if we have already done it // in this session or have a complete list locally. if (_requestedParticipants || participantListComplete) { - return getParticipants(); + return getParticipants(membershipFilter); } final matrixEvents = await client.getMembersByRoom(id);