From afebc190f6d5dee95060ecba9cc2b4c20a9fadd2 Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 24 Sep 2024 13:39:31 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=97=85?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20-=20=EB=AF=B8=EB=A6=AC=20=EB=93=A3?= =?UTF-8?q?=EA=B8=B0=20=EC=B5=9C=EC=86=8C=20=EC=8B=9C=EA=B0=84=2030?= =?UTF-8?q?=EC=B4=88=20->=2015=EC=B4=88=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kr/co/vividnext/sodalive/content/AudioContentService.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt index 7fa6d25..a8d1519 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContentService.kt @@ -318,8 +318,8 @@ class AudioContentService( val timeDifference = timeDifference(previewStartTime, previewEndTime) - if (timeDifference < 30000) { - throw SodaException("미리 듣기의 최소 시간은 30초 입니다.") + if (timeDifference < 15000) { + throw SodaException("미리 듣기의 최소 시간은 15초 입니다.") } } else { if (previewStartTime != null || previewEndTime != null) { From 35e5e518f5141ff27fa4d30095acd9603b7c5a5b Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 24 Sep 2024 19:11:10 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20-=20=EC=8A=A4?= =?UTF-8?q?=ED=94=BC=EC=BB=A4=20=EC=9D=B8=EC=9B=90=20=EC=B5=9C=EB=8C=80=20?= =?UTF-8?q?5=EB=AA=85=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kr/co/vividnext/sodalive/live/room/LiveRoomService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomService.kt index 7b83ab8..a3e682b 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/LiveRoomService.kt @@ -983,7 +983,7 @@ class LiveRoomService( val member = memberRepository.findByIdOrNull(request.memberId) ?: throw SodaException("로그인 정보를 확인해 주세요.") - if (roomInfo.speakerCount > 4) { + if (roomInfo.speakerCount > 5) { throw SodaException("스피커 정원이 초과하였습니다.") }