test #216

Merged
klaus merged 2 commits from test into main 2024-09-24 10:17:59 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 35e5e518f5 - Show all commits

View File

@ -983,7 +983,7 @@ class LiveRoomService(
val member = memberRepository.findByIdOrNull(request.memberId) val member = memberRepository.findByIdOrNull(request.memberId)
?: throw SodaException("로그인 정보를 확인해 주세요.") ?: throw SodaException("로그인 정보를 확인해 주세요.")
if (roomInfo.speakerCount > 4) { if (roomInfo.speakerCount > 5) {
throw SodaException("스피커 정원이 초과하였습니다.") throw SodaException("스피커 정원이 초과하였습니다.")
} }