Skip to content

Commit

Permalink
fix: 한글 요일
Browse files Browse the repository at this point in the history
  • Loading branch information
jcw1031 committed Nov 21, 2023
1 parent 7d93c62 commit 445dc2b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ private static String getScheduleDate(AcademicCalendar academicCalendar) {
}

private static String parseLocalDate(LocalDate localDate) {
return localDate.format(DateTimeFormatter.ofPattern("dd일(E)", Locale.KOREA));
return localDate.format(DateTimeFormatter.ofPattern("dd일(EEEEE)", Locale.KOREA));
}

private static String parseLocalDateWithMonth(LocalDate localDate) {
return localDate.format(DateTimeFormatter.ofPattern("MM월 dd일(E)", Locale.KOREA));
return localDate.format(DateTimeFormatter.ofPattern("MM월 dd일(EEEEE)", Locale.KOREA));
}

private static boolean isSameDate(LocalDate date1, LocalDate date2) {
Expand Down

0 comments on commit 445dc2b

Please sign in to comment.