Merge branch 'develop' into v4

This commit is contained in:
Salvatore Giordano
2022-04-14 10:04:27 +02:00
5 changed files with 22 additions and 1 deletions
+8
View File
@@ -1,3 +1,4 @@
<<<<<<< HEAD
## 4.0.0-beta.0
✅ Added
@@ -7,6 +8,13 @@
🐞 Fixed
- Minor fixes and improvements.
=======
## 3.6.1
🐞 Fixed
- [[#1081]](https://github.com/GetStream/stream-chat-flutter/issues/1081) Fixed a bug with user reconnection.
>>>>>>> develop
## 3.6.0
@@ -155,7 +155,7 @@ class WebSocket with TimerHelper {
final token = await tokenManager.loadToken(refresh: refreshToken);
final params = {
'user_id': user.id,
if (includeUserDetails) 'user_details': user,
'user_details': includeUserDetails ? user : {'id': user.id},
'user_token': token.rawValue,
'server_determines_connection_id': true,
};