Skip to content

Commit 964a308

Browse files
Merge pull request #139 from sendbird/v4.3.2
Add 4.3.2.
2 parents c85ff3b + cb4c67e commit 964a308

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v4.3.2 (May 7, 2025)
2+
3+
### Improvements
4+
- Fixed a bug where network error related exceptions were not raised in `loadPrevious()` and `loadNext()` in `MessageCollection`
5+
16
## v4.3.1 (Apr 4, 2025)
27

38
### Improvements

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.3.1
53+
sendbird_chat_sdk: ^4.3.2
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
@@ -64,7 +64,7 @@ part 'chat_notifications.dart';
6464
part 'chat_push.dart';
6565
part 'chat_user.dart';
6666

67-
const sdkVersion = '4.3.1';
67+
const sdkVersion = '4.3.2';
6868

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -620,9 +620,9 @@ abstract class BaseMessageCollection {
620620
if (_isDisposed) {
621621
_isLoading = false;
622622
if (exception != null && !_chat.apiClient.throwExceptionForTest) {
623-
if (_chat.dbManager.isEnabled() == false) {
624-
throw exception;
625-
}
623+
// if (_chat.dbManager.isEnabled() == false) { // Check
624+
throw exception;
625+
// }
626626
}
627627
return;
628628
}
@@ -689,9 +689,9 @@ abstract class BaseMessageCollection {
689689

690690
_isLoading = false;
691691
if (exception != null && !_chat.apiClient.throwExceptionForTest) {
692-
if (_chat.dbManager.isEnabled() == false) {
693-
throw exception;
694-
}
692+
// if (_chat.dbManager.isEnabled() == false) { // Check
693+
throw exception;
694+
// }
695695
}
696696
}
697697

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.3.1
3+
version: 4.3.2
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)