File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
stream_chat_flutter/example/linux/flutter Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 13
13
14
14
🐞 Fixed
15
15
- ` Null check operator used on a null value ` in Websocket connect.
16
+ - Ensure query cache is cleared when refreshing channel queries.
16
17
17
18
## 9.10.0
18
19
Original file line number Diff line number Diff line change @@ -786,7 +786,8 @@ class StreamChatClient {
786
786
await chatPersistenceClient? .updateChannelQueries (
787
787
filter,
788
788
channels.map ((c) => c.channel! .cid).toList (),
789
- clearQueryCache: paginationParams.offset == 0 ,
789
+ // Clear the query cache if we are refreshing.
790
+ clearQueryCache: (paginationParams.offset ?? 0 ) == 0 ,
790
791
);
791
792
792
793
this .state.addChannels (updateData.key);
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
9
9
record_linux
10
10
sqlite3_flutter_libs
11
11
url_launcher_linux
12
+ volume_controller
12
13
)
13
14
14
15
list (APPEND FLUTTER_FFI_PLUGIN_LIST
You can’t perform that action at this time.
0 commit comments