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

This commit is contained in:
2026-01-21 11:01:42 +09:00
parent a41bfaa037
commit ba27cc1fbd

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)