1:修改点歌房出现的错误

2:修改进入家族详情页面
This commit is contained in:
2025-12-03 20:02:14 +08:00
parent 8e9f6fa23c
commit 0d5e64e31a
12 changed files with 85 additions and 55 deletions

View File

@@ -420,7 +420,7 @@ public class WebViewActivity extends BaseMvpActivity<IPresenter,ActivityWebViewB
@JavascriptInterface
public void enterGroupChat(String group_id, String cover, String guild_name) {
Intent intent = new Intent(mContext, TUIGroupChatActivity.class);
intent.putExtra(TUIConstants.TUIChat.CHAT_ID, group_id);
intent.putExtra(TUIConstants.TUIChat.CHAT_ID, "g"+group_id);
intent.putExtra(TUIConstants.TUIChat.CHAT_NAME, guild_name);
intent.putExtra(TUIConstants.TUIChat.CHAT_TYPE, V2TIMConversation.V2TIM_GROUP);
mContext.startActivity(intent);