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

Merged
klaus merged 1 commits from test into main 2026-01-21 02:16:43 +00:00
Showing only changes of commit ba27cc1fbd - Show all commits

View File

@@ -435,11 +435,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( .format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a"))
DateTimeFormatter
.ofPattern(messageSource.getMessage("live.room.datetime_format_detail", langContext.lang).orEmpty())
.withLocale(langContext.lang.locale)
)
val beginDateTimeUtc = room.beginDateTime val beginDateTimeUtc = room.beginDateTime
.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME) .format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)