fix: propogate filter to getParticipants in requestParticipants
This commit is contained in:
parent
4c5f8d09e8
commit
1138012dd1
|
|
@ -1509,7 +1509,7 @@ class Room {
|
||||||
// Do not request users from the server if we have already done it
|
// Do not request users from the server if we have already done it
|
||||||
// in this session or have a complete list locally.
|
// in this session or have a complete list locally.
|
||||||
if (_requestedParticipants || participantListComplete) {
|
if (_requestedParticipants || participantListComplete) {
|
||||||
return getParticipants();
|
return getParticipants(membershipFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
final matrixEvents = await client.getMembersByRoom(id);
|
final matrixEvents = await client.getMembersByRoom(id);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue