라이브 방 정보 - 방 나가기 로직 디버그 하기 위해 print 코드 추가

This commit is contained in:
Klaus 2023-08-01 06:25:05 +09:00
parent 018a4a95a2
commit 7d904067fe
1 changed files with 1 additions and 0 deletions

View File

@ -875,6 +875,7 @@ class LiveRoomService(
val roomInfo = roomInfoRepository.findByIdOrNull(roomId)
if (roomInfo != null) {
val room = repository.getLiveRoom(roomId) ?: return
println(room)
if (room.member != null && room.member!!.id!! == member.id!!) {
room.isActive = false
kickOutService.deleteKickOutData(roomId = room.id!!)