|
|
@ -470,15 +470,6 @@ protocol CallServiceObserver: class {
|
|
|
|
|
|
|
|
|
|
|
|
let newCall = SignalCall.incomingCall(localId: UUID(), remotePhoneNumber: thread.contactIdentifier(), signalingId: callId)
|
|
|
|
let newCall = SignalCall.incomingCall(localId: UUID(), remotePhoneNumber: thread.contactIdentifier(), signalingId: callId)
|
|
|
|
|
|
|
|
|
|
|
|
guard self.call == nil else {
|
|
|
|
|
|
|
|
// TODO on iOS10+ we can use CallKit to swap calls rather than just returning busy immediately.
|
|
|
|
|
|
|
|
Logger.info("\(TAG) receivedCallOffer for thread: \(thread) but we're already in call: \(call!)")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleLocalBusyCall(newCall, thread: thread)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let untrustedIdentity = OWSIdentityManager.shared().untrustedIdentityForSending(toRecipientId: thread.contactIdentifier())
|
|
|
|
let untrustedIdentity = OWSIdentityManager.shared().untrustedIdentityForSending(toRecipientId: thread.contactIdentifier())
|
|
|
|
|
|
|
|
|
|
|
|
guard untrustedIdentity == nil else {
|
|
|
|
guard untrustedIdentity == nil else {
|
|
|
@ -510,6 +501,15 @@ protocol CallServiceObserver: class {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
guard self.call == nil else {
|
|
|
|
|
|
|
|
// TODO on iOS10+ we can use CallKit to swap calls rather than just returning busy immediately.
|
|
|
|
|
|
|
|
Logger.info("\(TAG) receivedCallOffer for thread: \(thread) but we're already in call: \(call!)")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleLocalBusyCall(newCall, thread: thread)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Logger.info("\(TAG) starting new call: \(newCall)")
|
|
|
|
Logger.info("\(TAG) starting new call: \(newCall)")
|
|
|
|
|
|
|
|
|
|
|
|
self.thread = thread
|
|
|
|
self.thread = thread
|
|
|
|