Skip to content

Commit

Permalink
Merge pull request #98 from Princess-in-silvertown/fix/97
Browse files Browse the repository at this point in the history
Fix: ์œ ์ € ์ด๋ฆ„์„ ์ด๋ฒคํŠธ ์ด๋ฆ„์œผ๋กœ ์„ค์ •
  • Loading branch information
woosung1223 authored Sep 30, 2024
2 parents a0b7431 + ce2cde0 commit acfc535
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private static List<Event> generatePeriodicalBirthdayEvents(User user) {

for (int yearAfter = 1; yearAfter <= PERIOD_UPPER_BOUND; yearAfter++) {
LocalDate birthdayYearAfter = birthday.plus(yearAfter, ChronoUnit.YEARS);
events.add(new Event("์ƒ์ผ", birthdayYearAfter, EventType.BIRTHDAY,
events.add(new Event(user.getName(), birthdayYearAfter, EventType.BIRTHDAY,
"์˜ค๋Š˜ ์ƒ์ผ์ด์—์š”!", user));
}
return events;
Expand Down

0 comments on commit acfc535

Please sign in to comment.