Commit e79ecd9f by Sixong.Zhu

u

parent 32f1f13d
Showing with 2 additions and 1 deletions
......@@ -826,7 +826,8 @@ export default {
if (!chatId) return;
const getChatMembersResult = await xim.fetchChatMembers(chatId);
if (!getChatMembersResult) return;
const chatMembers = getChatMembersResult.args[0] as ChatMember[];
const chatMembers =
(getChatMembersResult.args[0] as ChatMember[]) || [];
const all = await Promise.all(
chatMembers.map(async (member) => {
let result: NonNullable<ChatStore.STATE_CURRENT_CHAT_MEMBERS>[number];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment