浏览代码

VLCMediaLibraryManager: Reactivate thumbnail guard

The thumbnail path issue has been fixed with VLCMediaLibraryKit 0.0.7
Soomin Lee 6 年之前
父节点
当前提交
312ab906b0
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1 4
      SharedSources/VLCMediaLibraryManager.swift

+ 1 - 4
SharedSources/VLCMediaLibraryManager.swift

@@ -199,10 +199,7 @@ extension VLCMediaLibraryManager {
 extension VLCMediaLibraryManager {
     func requestThumbnail(for media: [VLCMLMedia]) {
         media.forEach() {
-                // FIXME: Remind Chouquette! In the medialibrary thumbnails uses absolute paths. Workaround:
-                //         - Regenerate path is a thumbnail is detected
-                //         - Request a new thumbnail
-                // if $0.isThumbnailGenerated() { return }
+            guard !$0.isThumbnailGenerated() else { return }
 
             if !medialib.requestThumbnail(for: $0) {
                 assertionFailure("VLCMediaLibraryManager: Failed to generate thumbnail for: \($0.identifier())")