修复支付链接问题
修复动态进个人主页无法聊一聊问题
修复支付页面【充值未到账】位置错误问题
This commit is contained in:
2023-11-10 18:12:07 +08:00
parent 37d2f0b975
commit 73cdf9ca43
3 changed files with 39 additions and 2 deletions

View File

@@ -241,6 +241,12 @@ public class AppContext extends CommonAppContext {
SocketReceiveBean received = JSON.parseObject(content.getContent(), SocketReceiveBean.class);
JSONObject map = received.getMsg().getJSONObject(0);
sendStartAnchorLive(map);
}else if(content.getContent().contains("Chat_messageNotify")){
//TODO 各种通知
}else if(content.getContent().contains("Chat_callAudioNotify")){
}else if(content.getContent().contains("Chat_callVideoNotify")){
}
//主播页面
if (TextUtils.isEmpty(PortraitLiveManager.liveID) && SocketRyClient.mSocketHandler != null) {
@@ -258,7 +264,7 @@ public class AppContext extends CommonAppContext {
}
private void sendStartAnchorLive(JSONObject map) {
AnchorStartLiveBean bean = new AnchorStartLiveBean();
AnchorStartLiveBean bean = new AnchorStartLiveBean(AnchorStartLiveBean.TYPE_LIVE);
bean.setAnchorName(map.getString("anchorName"));
bean.setRoomId(map.getString("roomid"));
bean.setAvatar(map.getString("avatar"));