瀏覽代碼

show thumbnail for videos in gallery

nayooti 5 年之前
父節點
當前提交
aa1ca85a64
共有 1 個文件被更改,包括 2 次插入1 次删除
  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
         }
     }