Преглед на файлове

MediaCollectionViewCell: Use thumbnailImage to show placeholder

(closes #599)
Carola Nitz преди 6 години
родител
ревизия
1b9f4bb569
променени са 1 файла, в които са добавени 1 реда и са изтрити 3 реда
  1. 1 3
      Sources/MediaCategoryCells/MediaCollectionViewCell.swift

+ 1 - 3
Sources/MediaCategoryCells/MediaCollectionViewCell.swift

@@ -95,9 +95,7 @@ class MediaCollectionViewCell: BaseCollectionViewCell {
         titleLabel.text = title
         accessibilityLabel = movie.accessibilityText(editing: false)
         descriptionLabel.text = movie.mediaDuration()
-        if movie.isThumbnailGenerated() {
-            thumbnailView.image = UIImage(contentsOfFile: movie.thumbnail()?.path ?? "")
-        }
+        thumbnailView.image = movie.thumbnailImage()
         newLabel.isHidden = !movie.isNew
     }