File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Sources/StreamChatSwiftUI/ChatChannel/MessageList
StreamChatSwiftUITests/Tests/ChatChannel Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88- Add support for downloading file attachments [ #952 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/952 )
99### 🐞 Fixed
1010- Fix updating back button tint with ` ColorPalette.navigationBarTintColor ` [ #953 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/953 )
11+ - Fix swipe to reply enabled when quoting a message is disabled [ #977 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/957 )
1112
1213# [ 4.88.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.88.0 )
1314_ September 10, 2025_
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ open class MessageViewModel: ObservableObject {
8686 }
8787
8888 open var isSwipeToQuoteReplyPossible : Bool {
89- message. isInteractionEnabled && channel? . config. repliesEnabled == true
89+ message. isInteractionEnabled && channel? . config. quotesEnabled == true
9090 }
9191
9292 open var textContent : String {
Original file line number Diff line number Diff line change @@ -454,7 +454,7 @@ class MessageContainerView_Tests: StreamChatTestCase {
454454 isSentByCurrentUser: true
455455 )
456456
457- let viewModel = MessageViewModel ( message: message, channel: . mockDMChannel( config: . mock( repliesEnabled : false ) ) )
457+ let viewModel = MessageViewModel ( message: message, channel: . mockDMChannel( config: . mock( quotesEnabled : false ) ) )
458458
459459 XCTAssertFalse ( viewModel. isSwipeToQuoteReplyPossible)
460460 }
You can’t perform that action at this time.
0 commit comments