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()
|
||||
}
|
||||
case .failed:
|
||||
DispatchQueue.main.async {
|
||||
self.model.playerError = item.error
|
||||
}
|
||||
|
||||
default:
|
||||
return
|
||||
|
@ -149,13 +149,10 @@ final class PlayerModel: ObservableObject {
|
||||
var pipController: AVPictureInPictureController?
|
||||
var pipDelegate = PiPDelegate()
|
||||
|
||||
@Published var presentingErrorDetails = false
|
||||
var playerError: Error? { didSet {
|
||||
#if !os(tvOS)
|
||||
if !playerError.isNil {
|
||||
presentingErrorDetails = true
|
||||
if let error = playerError {
|
||||
navigation.presentAlert(title: "Failed loading video", message: error.localizedDescription)
|
||||
}
|
||||
#endif
|
||||
}}
|
||||
|
||||
@Default(.qualityProfiles) var qualityProfiles
|
||||
|
Loading…
Reference in New Issue
Block a user