Skip to content

Commit b287254

Browse files
authored
Fix video assets not showing in composer (#768)
1 parent 40026ea commit b287254

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/StreamChatSwiftUI/ChatChannel/Composer/PhotoAttachmentPickerView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public struct PhotoAttachmentCell: View {
102102
.allowsHitTesting(true)
103103
.onTapGesture {
104104
withAnimation {
105-
if let assetURL = assetJpgURL() {
105+
if let assetURL = asset.mediaType == .image ? assetJpgURL() : assetURL {
106106
onImageTap(
107107
AddedAsset(
108108
image: image,

0 commit comments

Comments
 (0)