From d5e6ea8677e33936fd4437e65635af1ecfae5b7f Mon Sep 17 00:00:00 2001
From: Klaus <klaus@vividnext.co.kr>
Date: Wed, 11 Sep 2024 16:52:53 +0900
Subject: [PATCH 1/2] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EC=83=81?=
 =?UTF-8?q?=EC=84=B8=20-=20=EB=B3=B8=EC=9D=B8=EC=9D=B8=EC=A6=9D=EC=9D=84?=
 =?UTF-8?q?=20=ED=95=98=EC=A7=80=20=EC=95=8A=EC=9D=80=20=EC=9C=A0=EC=A0=80?=
 =?UTF-8?q?=EA=B0=80=2019+=EB=B0=A9=EC=9D=84=20=EC=A1=B0=ED=9A=8C=ED=95=98?=
 =?UTF-8?q?=EB=8A=94=20=EA=B2=BD=EC=9A=B0=20=EC=95=88=EB=82=B4=20=EB=A9=98?=
 =?UTF-8?q?=ED=8A=B8=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 aa11031..02c9b7e 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
@@ -408,7 +408,7 @@ class LiveRoomService(
             ?: throw SodaException("이미 종료된 방입니다")
 
         if (room.isAdult && member.auth == null) {
-            throw SodaException("본인인증이 필요한 서비스 입니다.\n소다라이브 마이페이지에서 본인인증 후 다시 이용해 주세요.")
+            throw SodaException("본인인증이 필요한 서비스 입니다.")
         }
 
         val beginDateTime = room.beginDateTime

From 4c50143834bd77251e585d871b834abb59c9ae43 Mon Sep 17 00:00:00 2001
From: Klaus <klaus@vividnext.co.kr>
Date: Wed, 11 Sep 2024 17:13:54 +0900
Subject: [PATCH 2/2] =?UTF-8?q?=EC=8B=9C=EB=A6=AC=EC=A6=88=20=EC=BD=98?=
 =?UTF-8?q?=ED=85=90=EC=B8=A0=20=EC=A0=95=EB=A0=AC=20-=20=EC=BD=98?=
 =?UTF-8?q?=ED=85=90=EC=B8=A0=20=EC=98=A4=ED=94=88=20=EB=82=A0=EC=A7=9C?=
 =?UTF-8?q?=EB=A5=BC=20=EA=B8=B0=EC=A4=80=EC=9C=BC=EB=A1=9C=20=EC=A0=95?=
 =?UTF-8?q?=EB=A0=AC=EB=90=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../content/series/content/ContentSeriesContentRepository.kt  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/series/content/ContentSeriesContentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/series/content/ContentSeriesContentRepository.kt
index 36a6eae..d141497 100644
--- a/src/main/kotlin/kr/co/vividnext/sodalive/content/series/content/ContentSeriesContentRepository.kt
+++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/series/content/ContentSeriesContentRepository.kt
@@ -59,10 +59,10 @@ class ContentSeriesContentQueryRepositoryImpl(
             .and(audioContent.isActive.isTrue)
             .and(audioContent.duration.isNotNull)
 
-        var orderBy = seriesContent.createdAt.desc()
+        var orderBy = audioContent.releaseDate.desc()
 
         if (sortType == SeriesSortType.OLDEST) {
-            orderBy = seriesContent.createdAt.asc()
+            orderBy = audioContent.releaseDate.asc()
         }
 
         if (!isAdult) {