mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Add more data to jitsi calls
This commit is contained in:
parent
ccd4e4261b
commit
d53dcf1ea2
6 changed files with 55 additions and 1 deletions
|
|
@ -1035,6 +1035,10 @@ public final class OngoingGroupCallContext {
|
|||
#endif
|
||||
|
||||
}
|
||||
|
||||
func addRemoteConnectedEvent(isRemoteConntected: Bool) {
|
||||
self.context.addRemoteConnectedEvent(isRemoteConntected)
|
||||
}
|
||||
}
|
||||
|
||||
private let queue = Queue()
|
||||
|
|
@ -1250,4 +1254,10 @@ public final class OngoingGroupCallContext {
|
|||
impl.setTone(tone: tone)
|
||||
}
|
||||
}
|
||||
|
||||
public func addRemoteConnectedEvent(isRemoteConntected: Bool) {
|
||||
self.impl.with { impl in
|
||||
impl.addRemoteConnectedEvent(isRemoteConntected: isRemoteConntected)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue