|
@@ -84,6 +84,9 @@ public class RoomController extends BaseController{
|
|
|
if(roomId == null){
|
|
|
throw new BusinessException(ResultCode.PARAM_MISS);
|
|
|
}
|
|
|
+ if(roomId.contains("_")){
|
|
|
+ roomId = roomId.split("_")[0];
|
|
|
+ }
|
|
|
Room room = roomService.getById(roomId);
|
|
|
if(room == null){
|
|
|
throw new BusinessException(ResultCode.ROOM_MISS);
|