Участник TwilioDidConnect участникDidDisConnect не звонил - PullRequest
0 голосов
/ 06 мая 2020

Я могу получить удаленный видео / аудиопоток. но обратные вызовы подключения участников не получали.

extension AVCallingViewcontroller: RoomDelegate {
    func roomDidConnect(room: Room) {
        room.remoteParticipants.forEach({$0.delegate = self})
        room.localParticipant?.delegate = self
    }

    func participantDidConnect(room : Room, participant: RemoteParticipant) {
      // never calling
        participant.delegate = self
    }

    func participantDidDisconnect(room _: Room, participant: RemoteParticipant) {
       //never calling
        print(#function)
    }

    func roomDidDisconnect(room: Room, error _: Error?) {
        print(#function)
    }
}
...