Skip to content

Commit 245d0f6

Browse files
Merge pull request #60 from sendbird/release/3.25.2
3.25.2
2 parents f8a40be + 8da9482 commit 245d0f6

4 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
### v3.25.2 (Dec 17, 2025) with Chat SDK `v4.32.4`
3+
- Fixed an issue where messages in `ChannelFragment` were not displayed after returning from another fragment when using Navigation Component.
24
### v3.25.1 (Dec 10, 2025) with Chat SDK `v4.32.3`
35
- Fixed message resend functionality to properly handle rate limit errors (`900200`).
46
### v3.25.0 (Nov 19, 2025) with Chat SDK `v4.32.1`

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ android.nonTransitiveRClass=false
2222
android.nonFinalResIds=false
2323
android.enableR8.fullMode=false
2424

25-
UIKIT_VERSION = 3.25.1
25+
UIKIT_VERSION = 3.25.2
2626
UIKIT_VERSION_CODE = 1

uikit/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dependencies {
7070
implementation fileTree(dir: 'libs', include: ['*.jar'])
7171

7272
// Sendbird
73-
api 'com.sendbird.sdk:sendbird-chat:4.32.3'
73+
api 'com.sendbird.sdk:sendbird-chat:4.32.4'
7474
implementation "com.sendbird.sdk:message-template:1.0.0"
7575

7676
implementation 'com.github.bumptech.glide:glide:4.16.0'

uikit/src/main/java/com/sendbird/uikit/modules/components/BaseMessageListComponent.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@ public void onScrollStateChanged(@NonNull RecyclerView recyclerView, int newStat
230230
final LinearLayoutManager layoutManager = createInnerLayoutManager(recyclerView);
231231
layoutManager.setReverseLayout(true);
232232
recyclerView.setLayoutManager(layoutManager);
233+
234+
LA adapter = getAdapter();
235+
if (adapter != null) {
236+
setAdapter(adapter);
237+
}
238+
233239
return this.messageRecyclerView;
234240
}
235241

0 commit comments

Comments
 (0)