|
@@ -38,7 +38,7 @@ public class RoomController{
|
|
|
})
|
|
|
@GetMapping(value = "/info")
|
|
|
public BaseResponse getRoomInfo(@RequestParam String roomId) throws Exception {
|
|
|
- return roomService.joinRoom(roomId, false);
|
|
|
+ return roomService.joinRoom(roomId.substring(1), false);
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/signIn", method = RequestMethod.POST)
|