File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Sources/StreamChatSwiftUI/ChatChannelList Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
5
5
6
6
### 🔄 Changed
7
7
- Improved subtitle info in pinned messages view [ #594 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/594 )
8
+ - The ` image(for channel: ChatChannel) ` in ` ChannelHeaderLoader ` is now open [ #595 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/595 )
8
9
9
10
### 🐞 Fixed
10
11
- Typing users did not update reliably in the message list [ #591 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/591 )
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ open class ChannelHeaderLoader: ObservableObject {
44
44
/// If the image is not downloaded, placeholder is returned.
45
45
/// - Parameter channel: the provided channel.
46
46
/// - Returns: the available image.
47
- public func image( for channel: ChatChannel ) -> UIImage {
47
+ open func image( for channel: ChatChannel ) -> UIImage {
48
48
if let image = loadedImages [ channel. cid] {
49
49
return image
50
50
}
You can’t perform that action at this time.
0 commit comments