Browse Source

fix(live): 处理结束直播消息时退出频道

- 在处理结束直播消息时调用leaveChannel方法
- 确保用户在直播结束时正确离开频道
- 添加对RoomController的依赖查找和异步等待
ios
Jolie 4 months ago
parent
commit
e00f3d291e
1 changed files with 2 additions and 0 deletions
  1. 2
      lib/service/live_chat_message_service.dart

2
lib/service/live_chat_message_service.dart

@ -69,6 +69,8 @@ class LiveChatMessageService {
//
if (messageData['type'] == 'end_live') {
RoomController controller = Get.find<RoomController>();
await controller.leaveChannel();
_handleEndLiveMessage();
return;
}

Loading…
Cancel
Save