Merge branch 'mkirk/fix-receiving-calls'

pull/1/head
Michael Kirk 7 years ago
commit c82571bd37

@ -584,8 +584,13 @@ protocol CallServiceObserver: class {
self.call = newCall
var backgroundTask = OWSBackgroundTask(label:"\(#function)", completionBlock: { [weak self] _ in
var backgroundTask = OWSBackgroundTask(label:"\(#function)", completionBlock: { [weak self] status in
AssertIsOnMainThread()
guard status == .expired else {
return
}
guard let strongSelf = self else {
return
}

Loading…
Cancel
Save