Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/stream_chat_flutter_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
## 9.26.0
## Upcoming

✅ Added

- Added support for predefined filters on `StreamChannelListController`.

🐞 Fixed

- Fixed `StreamChannelListController` not handling `notification.channel_deleted` event.

## 9.26.0

🐞 Fixed

- Fixed a reconnect storm when the OS closed the WebSocket during the background keep-alive window; reconnects are now paused on background and resumed on foreground.

## 9.25.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ class StreamChannelListController extends PagedValueNotifier<int, Channel> {
if (eventListener?.call(event) ?? false) return;

final eventType = event.type;
if (eventType == EventType.channelDeleted) {
if (eventType == EventType.channelDeleted ||
eventType == EventType.notificationChannelDeleted) {
_eventHandler.onChannelDeleted(event, this);
} else if (eventType == EventType.channelHidden) {
_eventHandler.onChannelHidden(event, this);
Expand Down
Loading
Loading