1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30

Update artwork using URLSession

This commit is contained in:
Arkadiusz Fal 2022-06-26 23:28:03 +02:00
parent d8bd3ef50c
commit 8d3bbb34d6

View File

@ -585,23 +585,26 @@ final class PlayerModel: ObservableObject {
func updateCurrentArtwork() { func updateCurrentArtwork() {
guard let video = currentVideo, guard let video = currentVideo,
let thumbnailURL = video.thumbnailURL(quality: .medium), let thumbnailURL = video.thumbnailURL(quality: .medium)
let thumbnailData = try? Data(contentsOf: thumbnailURL)
else { else {
return return
} }
#if os(macOS) let task = URLSession.shared.dataTask(with: thumbnailURL) { [weak self] thumbnailData, _, _ in
let image = NSImage(data: thumbnailData) guard let thumbnailData = thumbnailData else {
#else return
let image = UIImage(data: thumbnailData) }
#endif
if image.isNil { #if os(macOS)
return guard let image = NSImage(data: thumbnailData) else { return }
#else
guard let image = UIImage(data: thumbnailData) else { return }
#endif
self?.currentArtwork = MPMediaItemArtwork(boundsSize: image.size) { _ in image }
} }
currentArtwork = MPMediaItemArtwork(boundsSize: image!.size) { _ in image! } task.resume()
} }
func toggleFullscreen(_ isFullScreen: Bool) { func toggleFullscreen(_ isFullScreen: Bool) {