mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-13 19:30:00 +02:00
Merge branch 'develop' into matthew/fix-more-iphone12-layout
This commit is contained in:
@@ -8,6 +8,7 @@ Changes to be released in next version
|
||||
*
|
||||
|
||||
🐛 Bugfix
|
||||
* VoIP: Do not present ended calls.
|
||||
* More fixes to Main.storyboard layout on iPhone 12 Pro Max (#4527)
|
||||
|
||||
⚠️ API Changes
|
||||
|
||||
@@ -393,7 +393,9 @@ class CallPresenter: NSObject {
|
||||
if let oldCallVC = self.callVCs.values.first,
|
||||
self.presentedCallVC == nil,
|
||||
!self.uiOperationQueue.containsPresentCallVCOperation,
|
||||
!self.uiOperationQueue.containsEnterPiPOperation {
|
||||
!self.uiOperationQueue.containsEnterPiPOperation,
|
||||
let oldCall = oldCallVC.mxCall,
|
||||
oldCall.state != .ended {
|
||||
// present the call screen after dismissing this one
|
||||
self.presentCallVC(oldCallVC)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user