From 41a4802dc693c26931d0a6aa94e7863f60427a1f Mon Sep 17 00:00:00 2001
From: Klaus <klaus@vividnext.co.kr>
Date: Tue, 14 Nov 2023 12:07:42 +0900
Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EC=83=81?=
 =?UTF-8?q?=EC=84=B8=20-=20=EC=8B=9C=EC=9E=91=20=EC=8B=9C=EA=B0=84=20datef?=
 =?UTF-8?q?ormat=20yyyy.MM.dd=20E=20hh:mm=20a=20=EB=A1=9C=20=EB=B3=B5?=
 =?UTF-8?q?=EA=B5=AC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../kr/co/vividnext/sodalive/live/room/LiveRoomService.kt | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

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 d05576f..98c1efd 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
@@ -126,7 +126,11 @@ class LiveRoomService(
                 val beginDateTime = it.beginDateTime
                     .atZone(ZoneId.of("UTC"))
                     .withZoneSameInstant(ZoneId.of(timezone))
-                    .format(DateTimeFormatter.ofPattern("yyyy년 MM월 dd일 (E) a hh시 mm분").withLocale(Locale.KOREAN))
+                    .format(
+                        DateTimeFormatter
+                            .ofPattern("yyyy년 MM월 dd일 (E) a hh시 mm분")
+                            .withLocale(Locale.KOREAN)
+                    )
 
                 GetRoomListResponse(
                     roomId = it.id!!,
@@ -297,7 +301,7 @@ class LiveRoomService(
         val beginDateTime = room.beginDateTime
             .atZone(ZoneId.of("UTC"))
             .withZoneSameInstant(ZoneId.of(timezone))
-            .format(DateTimeFormatter.ofPattern("yyyy년 MM월 dd일 (E) a hh시 mm분").withLocale(Locale.KOREAN))
+            .format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a"))
 
         val response = GetRoomDetailResponse(
             roomId = roomId,