Migrate frontend realtime messaging to SSE.
Switch service integrations and screen/store consumers from websocket events to SSE, and ignore generated dist-web artifacts. Made-with: Cursor
This commit is contained in:
@@ -117,8 +117,8 @@ const GroupInfoScreen: React.FC = () => {
|
||||
|
||||
// 并行加载群组信息和成员列表
|
||||
const [groupData, membersData] = await Promise.all([
|
||||
groupManager.getGroup(groupId),
|
||||
groupManager.getMembers(groupId, 1, 100),
|
||||
groupManager.getGroup(groupId, true),
|
||||
groupManager.getMembers(groupId, 1, 100, true),
|
||||
]);
|
||||
|
||||
setGroup(groupData);
|
||||
|
||||
Reference in New Issue
Block a user