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 1313
1414🐞 Fixed
1515- ` Null check operator used on a null value ` in Websocket connect.
16+ - Ensure query cache is cleared when refreshing channel queries.
1617
1718## 9.10.0
1819
Original file line number Diff line number Diff line change @@ -786,7 +786,8 @@ class StreamChatClient {
786786 await chatPersistenceClient? .updateChannelQueries (
787787 filter,
788788 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 ,
790791 );
791792
792793 this .state.addChannels (updateData.key);
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
99 record_linux
1010 sqlite3_flutter_libs
1111 url_launcher_linux
12+ volume_controller
1213)
1314
1415list (APPEND FLUTTER_FFI_PLUGIN_LIST
You can’t perform that action at this time.
0 commit comments