Skip to content

Commit

Permalink
#157 [fix] : 멤버도 CREATOR로 반환되는 문제를 해결한다
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbang105 committed Jan 22, 2025
1 parent 10abda5 commit 7cfa650
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static GetEventResponse of(Event event, List<String> ranges, EventStatus
event.getEndTime(),
event.getCategory(),
ranges,
EventStatus.PARTICIPANT == eventStatus ? eventStatus : EventStatus.CREATOR
EventStatus.PARTICIPANT == eventStatus || eventStatus == null ? eventStatus : EventStatus.CREATOR
);
}
}

0 comments on commit 7cfa650

Please sign in to comment.