From 167d60dcacae417573de40f0ab98b46ae6c58ed7 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Fri, 5 May 2023 01:27:06 +0530 Subject: [PATCH] doc: advice to use `regular` as the default connectionMode Signed-off-by: xsahil03x --- packages/stream_chat_persistence/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stream_chat_persistence/README.md b/packages/stream_chat_persistence/README.md index 0851335b..1d7f8baf 100644 --- a/packages/stream_chat_persistence/README.md +++ b/packages/stream_chat_persistence/README.md @@ -37,7 +37,7 @@ The usage is pretty simple. ```dart final chatPersistentClient = StreamChatPersistenceClient( logLevel: Level.INFO, - connectionMode: ConnectionMode.background, + connectionMode: ConnectionMode.regular, ); ``` 2. Pass the instance to the official Stream chat client.