File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Sources/StreamChatSwiftUI/ChatChannel/MessageList/AsyncVoiceMessages Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9
9
### π Changed
10
10
- Author name display now depends on number of participants, not channel type
11
11
12
+ ### π Fixed
13
+ - Voice recording messages now use the standard message modifier
14
+
12
15
### π Changed
13
16
14
17
# [ 4.48.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.48.0 )
Original file line number Diff line number Diff line change @@ -91,7 +91,11 @@ public struct VoiceRecordingContainerView<Factory: ViewFactory>: View {
91
91
. background ( Color ( colors. background) )
92
92
. cornerRadius ( 16 )
93
93
. padding ( . all, 4 )
94
- . messageBubble ( for: message, isFirst: isFirst)
94
+ . modifier (
95
+ factory. makeMessageViewModifier (
96
+ for: MessageModifierInfo ( message: message, isFirst: isFirst)
97
+ )
98
+ )
95
99
}
96
100
97
101
private func index( for attachment: ChatMessageVoiceRecordingAttachment ) -> Int {
You canβt perform that action at this time.
0 commit comments