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 97a328d commit 71725d3Copy full SHA for 71725d3
Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageRepliesView.swift
@@ -28,15 +28,15 @@ struct MessageRepliesView<Factory: ViewFactory>: View {
28
HStack {
29
if !message.isSentByCurrentUser {
30
MessageAvatarView(
31
- avatarURL: message.threadParticipants[0].imageURL,
+ avatarURL: message.threadParticipants.first?.imageURL,
32
size: .init(width: 16, height: 16)
33
)
34
}
35
Text("\(replyCount) \(repliesText)")
36
.font(fonts.footnoteBold)
37
if message.isSentByCurrentUser {
38
39
40
41
42
0 commit comments