라이브 방 상세 - 날짜 포맷 변경으로 유료방 입장이 불가한 문제를 해결하기 위해 이전으로 롤백 #379

Merged
klaus merged 1 commits from test into main 2026-01-21 02:16:43 +00:00

View File

@@ -435,11 +435,7 @@ class LiveRoomService(
val beginDateTime = room.beginDateTime
.atZone(ZoneId.of("UTC"))
.withZoneSameInstant(ZoneId.of(timezone))
.format(
DateTimeFormatter
.ofPattern(messageSource.getMessage("live.room.datetime_format_detail", langContext.lang).orEmpty())
.withLocale(langContext.lang.locale)
)
.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a"))
val beginDateTimeUtc = room.beginDateTime
.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)