Skip to content

Commit 451f678

Browse files
Merge pull request #128 from sendbird/v4.2.28
Add 4.2.28.
2 parents 53ca8a3 + 693ee78 commit 451f678

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v4.2.28 (Nov 15, 2024)
2+
3+
### Improvements
4+
- Fixed a bug regarding the initial parameters in message collection
5+
16
## v4.2.27 (Nov 6, 2024)
27

38
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Before installing Sendbird Chat SDK, you need to create a Sendbird application o
5050

5151
```yaml
5252
dependencies:
53-
sendbird_chat_sdk: ^4.2.27
53+
sendbird_chat_sdk: ^4.2.28
5454
```
5555
5656
- Run `flutter pub get` command in your project directory.

lib/src/internal/main/chat/chat.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ part 'chat_notifications.dart';
6262
part 'chat_push.dart';
6363
part 'chat_user.dart';
6464

65-
const sdkVersion = '4.2.27';
65+
const sdkVersion = '4.2.28';
6666

6767
// Internal implementation for main class. Do not directly access this class.
6868
class Chat with WidgetsBindingObserver {

lib/src/public/main/collection/group_channel_message_collection/base_message_collection.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,14 +305,14 @@ abstract class BaseMessageCollection {
305305
);
306306
}
307307
//- Failed messages
308-
309-
_initializeParams.includeMetaArray = true;
310-
_initializeParams.includeReactions = true;
311-
_initializeParams.includeThreadInfo = true;
312-
_initializeParams.includeParentMessageInfo = true;
313308
}
314309
//- [DBManager]
315310

311+
_initializeParams.includeMetaArray = true;
312+
_initializeParams.includeReactions = true;
313+
_initializeParams.includeThreadInfo = true;
314+
_initializeParams.includeParentMessageInfo = true;
315+
316316
List<RootMessage> messages = [];
317317
ChannelMessagesGetResponse? res;
318318
Object? exception;

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sendbird_chat_sdk
22
description: With Sendbird Chat for Flutter, you can easily build an in-app chat with all the essential messaging features.
3-
version: 4.2.27
3+
version: 4.2.28
44
homepage: https://sendbird.com
55
repository: https://github.com/sendbird/sendbird-chat-sdk-flutter
66
documentation: https://sendbird.com/docs/chat/sdk/v4/flutter/getting-started/send-first-message

0 commit comments

Comments
 (0)