Merge remote-tracking branch 'origin/develop' into feature/hardcoded_json_delay
This commit is contained in:
commit
b8f785fbc2
@ -27,9 +27,18 @@ open class ActionShareHandler: MVMCoreActionHandlerProtocol {
|
|||||||
// Activity was completed, considered finished.
|
// Activity was completed, considered finished.
|
||||||
continuation.resume()
|
continuation.resume()
|
||||||
} else if let error = error {
|
} else if let error = error {
|
||||||
|
// Activity sharing failed.
|
||||||
continuation.resume(throwing: error)
|
continuation.resume(throwing: error)
|
||||||
} else {
|
} else {
|
||||||
continuation.resume()
|
// Activity was probably cancelled
|
||||||
|
if #available(iOS 16.4, *) {
|
||||||
|
continuation.resume()
|
||||||
|
} else if let _ = activityType {
|
||||||
|
// Pre iOS 16.4, this block gets called multiple times. Each time a specific activityType was selected and was cancelled, and when the whole share activity itself is cancelled.
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
continuation.resume()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Task(priority: .high) {
|
Task(priority: .high) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user