Compare commits
No commits in common. "78d476fe80600884409a3a11cb8f16af38d58b63" and "a11c8465d552368c0e02b3af8d2d913a75de6974" have entirely different histories.
78d476fe80
...
a11c8465d5
|
@ -126,11 +126,7 @@ class LiveRoomService(
|
||||||
val beginDateTime = it.beginDateTime
|
val beginDateTime = it.beginDateTime
|
||||||
.atZone(ZoneId.of("UTC"))
|
.atZone(ZoneId.of("UTC"))
|
||||||
.withZoneSameInstant(ZoneId.of(timezone))
|
.withZoneSameInstant(ZoneId.of(timezone))
|
||||||
.format(
|
.format(DateTimeFormatter.ofPattern("yyyy년 MM월 dd일 (E) a hh시 mm분").withLocale(Locale.KOREAN))
|
||||||
DateTimeFormatter
|
|
||||||
.ofPattern("yyyy년 MM월 dd일 (E) a hh시 mm분")
|
|
||||||
.withLocale(Locale.KOREAN)
|
|
||||||
)
|
|
||||||
|
|
||||||
GetRoomListResponse(
|
GetRoomListResponse(
|
||||||
roomId = it.id!!,
|
roomId = it.id!!,
|
||||||
|
@ -301,7 +297,7 @@ class LiveRoomService(
|
||||||
val beginDateTime = room.beginDateTime
|
val beginDateTime = room.beginDateTime
|
||||||
.atZone(ZoneId.of("UTC"))
|
.atZone(ZoneId.of("UTC"))
|
||||||
.withZoneSameInstant(ZoneId.of(timezone))
|
.withZoneSameInstant(ZoneId.of(timezone))
|
||||||
.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a"))
|
.format(DateTimeFormatter.ofPattern("yyyy년 MM월 dd일 (E) a hh시 mm분").withLocale(Locale.KOREAN))
|
||||||
|
|
||||||
val response = GetRoomDetailResponse(
|
val response = GetRoomDetailResponse(
|
||||||
roomId = roomId,
|
roomId = roomId,
|
||||||
|
|
Loading…
Reference in New Issue