mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 14:16:59 +02:00
Conference call: Do not show conference user in members list
This commit is contained in:
@@ -28,6 +28,8 @@
|
||||
|
||||
#import "Contact.h"
|
||||
|
||||
#import "MXCallManager.h"
|
||||
|
||||
@interface RoomParticipantsViewController ()
|
||||
{
|
||||
// Search session
|
||||
@@ -449,7 +451,11 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
[self handleRoomMember:mxMember];
|
||||
// Filter out conference users from non conference user rooms
|
||||
if (!(self.mxRoom.state.isConferenceUserRoom && [MXCallManager isConferenceUser:mxMember.userId]))
|
||||
{
|
||||
[self handleRoomMember:mxMember];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user