diff --git a/Classes/LinphoneAppDelegate.m b/Classes/LinphoneAppDelegate.m index 2a46b7113..13309fd19 100644 --- a/Classes/LinphoneAppDelegate.m +++ b/Classes/LinphoneAppDelegate.m @@ -62,7 +62,9 @@ LinphoneCall *call = linphone_core_get_current_call(LC); if (!call) { - [LinphoneManager.instance stopLinphoneCore]; + dispatch_async(dispatch_get_main_queue(), ^{ + [LinphoneManager.instance stopLinphoneCore]; + }); } }