Add more data to jitsi calls

This commit is contained in:
Isaac
2024-12-27 22:41:53 +08:00
parent ccd4e4261b
commit d53dcf1ea2
6 changed files with 55 additions and 1 deletions

View File

@@ -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)
}
}
}