From 97d44104e10449c0b23e78faefb765147609d248 Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 6 Mar 2024 13:43:03 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A9=94=EB=89=B4=ED=8C=90=20=EA=B0=80?= =?UTF-8?q?=EC=A0=B8=EC=98=A4=EA=B8=B0=20-=20=EB=A9=94=EB=89=B4=ED=8C=90?= =?UTF-8?q?=EC=9D=B4=20=EC=97=86=EC=9D=84=20=EB=95=8C=20=EC=98=88=EC=99=B8?= =?UTF-8?q?=EC=B2=98=EB=A6=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt index f6ab126..e27c78a 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt @@ -69,10 +69,6 @@ class LiveRoomMenuService( fun getLiveMenu(creatorId: Long): GetMenuResponse? { val menuList = repository.findByCreatorId(creatorId = creatorId) - if (menuList.isEmpty()) { - throw SodaException("설정된 메뉴판이 없습니다.") - } - var activeMenu: LiveRoomMenu? = null for (menu in menuList) { if (menu.isActive) {