We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7701739 commit b15c746Copy full SHA for b15c746
CHANGELOG.md
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
### ✅ Added
7
- Config for changing supported media types in the composer
8
9
+### 🐞 Fixed
10
+- Play audio in videos when in silent mode
11
+
12
# [4.37.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.37.0)
13
_September 18, 2023_
14
Sources/StreamChatSwiftUI/ChatChannel/Gallery/VideoPlayerView.swift
@@ -48,6 +48,7 @@ public struct VideoPlayerView: View {
48
.foregroundColor(Color(colors.text))
49
}
50
.onAppear {
51
+ try? AVAudioSession.sharedInstance().setCategory(.playback, options: [])
52
avPlayer.play()
53
54
0 commit comments