diff --git a/Classes/LinphoneAppDelegate.m b/Classes/LinphoneAppDelegate.m index dabfbe4e9..29188cf0f 100644 --- a/Classes/LinphoneAppDelegate.m +++ b/Classes/LinphoneAppDelegate.m @@ -114,7 +114,8 @@ } instance->currentCallContextBeforeGoingBackground.call = 0; } else if (linphone_call_get_state(call) == LinphoneCallIncomingReceived) { - if (linphone_core_get_calls_nb(LC) > 1) { + if (linphone_core_get_calls_nb(LC) > 1 || + (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_9_x_Max)) { [PhoneMainView.instance displayIncomingCall:call]; } // in this case, the ringing sound comes from the notification. diff --git a/Classes/PhoneMainView.m b/Classes/PhoneMainView.m index c81c3eefb..174715ad3 100644 --- a/Classes/PhoneMainView.m +++ b/Classes/PhoneMainView.m @@ -323,7 +323,8 @@ static RootViewManager *rootViewManagerInstance = nil; switch (state) { case LinphoneCallIncomingReceived: case LinphoneCallIncomingEarlyMedia: { - if (linphone_core_get_calls_nb(LC) > 1) { + if (linphone_core_get_calls_nb(LC) > 1 || + (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_9_x_Max)) { [self displayIncomingCall:call]; } break;