Improve bookmarks loading

This commit is contained in:
Arkadiusz Fal
2022-11-12 03:05:56 +01:00
parent eb9924bd4a
commit ccded28468
2 changed files with 4 additions and 13 deletions

View File

@@ -290,12 +290,8 @@ final class MPVBackend: PlayerBackend {
startPlaying()
}
if video.isLocal, video.localStreamIsFile, let localStream = video.localStream {
guard localStream.localURL.startAccessingSecurityScopedResource() else {
self.model.navigation.presentAlert(title: "Could not open file")
self.model.closeCurrentItem()
return
}
if video.isLocal, video.localStreamIsFile {
_ = url.startAccessingSecurityScopedResource()
}
self.client.loadFile(url, sub: captions?.url, time: time, forceSeekable: stream.kind == .hls) { [weak self] _ in