Merge pull request #2591 from element-hq/fix/jme/2590-update-room-member-list-after-changing-roles

Update member list after changing member roles
This commit is contained in:
ganfra 2024-03-26 12:27:42 +01:00 committed by GitHub
commit bbcc0079d8
5 changed files with 16 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
}
/**