From ce2cde0b33a911b090e10eae99f1ea28077cc888 Mon Sep 17 00:00:00 2001 From: woosung1223 Date: Mon, 30 Sep 2024 23:08:17 +0900 Subject: [PATCH] =?UTF-8?q?:bug:=20fix:=20=EC=9C=A0=EC=A0=80=20=EC=9D=B4?= =?UTF-8?q?=EB=A6=84=EC=9D=84=20=EC=9D=B4=EB=B2=A4=ED=8A=B8=20=EC=9D=B4?= =?UTF-8?q?=EB=A6=84=EC=9C=BC=EB=A1=9C=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/slvtwn/khu/toyouserver/application/UserService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/slvtwn/khu/toyouserver/application/UserService.java b/src/main/java/slvtwn/khu/toyouserver/application/UserService.java index 91f9eba..542b101 100644 --- a/src/main/java/slvtwn/khu/toyouserver/application/UserService.java +++ b/src/main/java/slvtwn/khu/toyouserver/application/UserService.java @@ -94,7 +94,7 @@ private static List 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;