File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
33🐞 Fixed
44
5+ - [[ #1774 ]] ( https://github.com/GetStream/stream-chat-flutter/issues/1774 ) Fixed failed to execute 'close' on 'WebSocket'.
56- [[ #2016 ]] ( https://github.com/GetStream/stream-chat-flutter/issues/2016 ) Fix muted channel's unreadCount incorrectly updated.
67
78## 9.4.0
Original file line number Diff line number Diff line change @@ -120,8 +120,7 @@ class WebSocket with TimerHelper {
120120 _logger? .info ('Closing connection with $baseUrl ' );
121121 if (_webSocketChannel != null ) {
122122 _unsubscribeFromWebSocketChannel ();
123- _webSocketChannel? .sink
124- .close (_manuallyClosed ? status.normalClosure : status.goingAway);
123+ _webSocketChannel? .sink.close (status.normalClosure, 'Closing connection' );
125124 _webSocketChannel = null ;
126125 }
127126 }
You can’t perform that action at this time.
0 commit comments