Skip to content

Commit 02c9c6b

Browse files
authored
863 Chat-RN-1.3.5-release (#1527)
* Chat-rn-release-notes+mute-list-update * update release date
1 parent 9320a10 commit 02c9c6b

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

agora-chat/client-api/chat-room/manage-chatroom-members.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ import ManageChatroomMember from '@docs/shared/chat-sdk/client-api/chat-room/_ma
1010

1111
export const toc = [{}];
1212

13-
<ManageChatroomMember PRODUCT="Chat" COMPANY="Agora" SDK="Chat SDK" CLIENT="app" />
13+
<ManageChatroomMember />

shared/chat-sdk/client-api/chat-room/manage-chatroom-members/project-implementation/react-native.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,23 @@ ChatClient.getInstance()
151151
});
152152
```
153153

154+
#### Check if a member is on the chat room mute list
155+
156+
All chat room members can call `isMemberInChatRoomMuteList` to check whether they are on the mute list of a specific chat room. When called, the method returns a boolean value indicating the members current mute list status.
157+
158+
The following code sample shows how to check whether you are on the chat room mute list:
159+
160+
```ts
161+
ChatClient.getInstance()
162+
.roomManager.isMemberInChatRoomMuteList('roomId123')
163+
.then((v) => {
164+
console.log('Whether I am in the chat room mute list:', v);
165+
})
166+
.catch((error) => {
167+
console.log('Failed to check if I am in the chat room mute list:', error);
168+
});
169+
```
170+
154171
### Manage the chat room allow list
155172

156173
The chat room owner and admins are added to the chat room allow list by default.

shared/chat-sdk/reference/release-notes/react-native.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
## v1.3.5
44

5-
Released on October 10, 2025.
5+
Released on November 24, 2025.
6+
7+
#### New features
8+
9+
- Added a function to enable chat room members to check if they are on the mute list of a chat room.
10+
- Added support for 16 KB page size for compatibility with Android 15 or higher.
611

712
#### Issues fixed
813

914
- Fixed bugs related to the chatroom mute list.
10-
- Added 16 KB page alignment support for Android 15 and later.
1115

1216
## v1.3.4
1317

0 commit comments

Comments
 (0)