feat:删除房间榜单部分代码(新的是H5实现,删除旧原生实现)

This commit is contained in:
Max
2023-11-06 11:44:01 +08:00
parent b9c165f355
commit 892b8192cc
14 changed files with 4 additions and 614 deletions

View File

@@ -83,7 +83,8 @@ public class UriProvider {
/**
* 房间榜单
*/
public static String getRoomRanking(long roomUid) {
public static String getRoomRanking() {
long roomUid = AvRoomDataManager.get().getRoomUid();
InitInfo info = InitialModel.get().getCacheInitInfo();
if (info != null) {
String uri = info.getH5Uri("roomRank");
@@ -91,7 +92,7 @@ public class UriProvider {
return uri + "?roomUid=" + roomUid;
}
}
return null;
return WEB_URL.concat("/yinmeng/modules/room_rank/index.html?roomUid=" + roomUid);
}
/**
@@ -352,13 +353,6 @@ public class UriProvider {
}
/**
* 房间排行榜
*/
public static String getRoomRanking() {
return WEB_URL.concat("/yinmeng/modules/room_rank/index.html?roomUid=" + AvRoomDataManager.get().getRoomUid());
}
/**
* 第三方SDK协议
*