From 38eb5f83a45750f6d2ce9ede02e1b900f3fa5350 Mon Sep 17 00:00:00 2001 From: Jolie <412895109@qq.com> Date: Mon, 24 Nov 2025 00:40:58 +0800 Subject: [PATCH] =?UTF-8?q?fix(discover):=20=E6=9B=B4=E6=96=B0=E9=A2=91?= =?UTF-8?q?=E9=81=93ID=E8=8E=B7=E5=8F=96=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 DiscoverPage 中的频道ID为新值 '1190127527251808256' - 在 RoomController 中统一使用 RTCManager.instance.currentChannelId 获取频道ID - 确保加入和离开聊天时使用的频道ID一致性和正确性 --- lib/pages/discover/discover_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/discover/discover_page.dart b/lib/pages/discover/discover_page.dart index 46f3e0c..0958349 100644 --- a/lib/pages/discover/discover_page.dart +++ b/lib/pages/discover/discover_page.dart @@ -166,7 +166,7 @@ class _LiveItemState extends State { return InkWell( onTap: () async{ // Get.to(() => LiveRoomPage(id: 0)); - await roomController.joinChannel('1190111071629873152'); + await roomController.joinChannel('1190127527251808256'); }, child: ClipRRect( borderRadius: BorderRadius.all(Radius.circular(10.w)),