mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 14:16:59 +02:00
Conference call: Tapping on the room details for Matrix HQ freezes the app for about 5s #499
This commit is contained in:
@@ -431,7 +431,7 @@
|
||||
if (self.mxRoom)
|
||||
{
|
||||
// Retrieve the current members from the room state
|
||||
NSArray *members = self.mxRoom.state.members;
|
||||
NSArray *members = [self.mxRoom.state membersWithoutConferenceUser];
|
||||
NSString *userId = self.mxRoom.mxSession.myUser.userId;
|
||||
NSArray *roomThirdPartyInvites = self.mxRoom.state.thirdPartyInvites;
|
||||
|
||||
@@ -451,11 +451,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
// Filter out conference users from non conference user rooms
|
||||
if (!(self.mxRoom.state.isConferenceUserRoom && [MXCallManager isConferenceUser:mxMember.userId]))
|
||||
{
|
||||
[self handleRoomMember:mxMember];
|
||||
}
|
||||
[self handleRoomMember:mxMember];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user