Only retrieve active users in RoomMemberListDataSource

This commit is contained in:
Jorge Martín 2024-03-22 10:14:22 +01:00
parent 759022ec92
commit 9f2726ec4f
2 changed files with 8 additions and 4 deletions

View file

@ -66,7 +66,9 @@ enum class RoomMembershipState {
INVITE,
JOIN,
KNOCK,
LEAVE
LEAVE;
fun isActive(): Boolean = this == JOIN || this == INVITE
}
/**