mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 22:00:31 +05:30
Show asset loading error from AVPlayer
This commit is contained in:
parent
b169fc91b3
commit
fa76f726c5
@ -459,7 +459,9 @@ final class AVPlayerBackend: PlayerBackend {
|
|||||||
self.model.play()
|
self.model.play()
|
||||||
}
|
}
|
||||||
case .failed:
|
case .failed:
|
||||||
self.model.playerError = item.error
|
DispatchQueue.main.async {
|
||||||
|
self.model.playerError = item.error
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return
|
return
|
||||||
|
@ -149,13 +149,10 @@ final class PlayerModel: ObservableObject {
|
|||||||
var pipController: AVPictureInPictureController?
|
var pipController: AVPictureInPictureController?
|
||||||
var pipDelegate = PiPDelegate()
|
var pipDelegate = PiPDelegate()
|
||||||
|
|
||||||
@Published var presentingErrorDetails = false
|
|
||||||
var playerError: Error? { didSet {
|
var playerError: Error? { didSet {
|
||||||
#if !os(tvOS)
|
if let error = playerError {
|
||||||
if !playerError.isNil {
|
navigation.presentAlert(title: "Failed loading video", message: error.localizedDescription)
|
||||||
presentingErrorDetails = true
|
}
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
@Default(.qualityProfiles) var qualityProfiles
|
@Default(.qualityProfiles) var qualityProfiles
|
||||||
|
Loading…
Reference in New Issue
Block a user