Procházet zdrojové kódy

show thumbnail for videos in gallery

nayooti před 5 roky
rodič
revize
aa1ca85a64
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      deltachat-ios/View/Cell/GalleryCell.swift

+ 2 - 1
deltachat-ios/View/Cell/GalleryCell.swift

@@ -40,10 +40,11 @@ class GalleryCell: UICollectionViewCell {
         case .image:
             imageView.image = msg.image
         case .video:
-            break
+            imageView.image = DcUtils.generateThumbnailFromVideo(url: fileUrl)
         case .gif:
             imageView.sd_setImage(with: fileUrl, placeholderImage: nil)
         default:
+            safe_fatalError("unsupported viewtype - viewtype \(viewtype) not supported.")
             break
         }
     }