Skip to content

Commit

Permalink
fix: 연산자 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kckc0608 committed Oct 16, 2024
1 parent f613571 commit 9b03ac7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private List<StudyWeekStatisticsResponse> calculateStudyWeekStatistics(
return studyDetails.stream()
.map((studyDetail -> {
boolean isCanceledWeek = !studyDetail.getCurriculum().isOpen();
boolean isCanceledAssignment = !studyDetail.getAssignment().isOpen() | isCanceledWeek;
boolean isCanceledAssignment = !studyDetail.getAssignment().isOpen() || isCanceledWeek;

if (totalStudentCount == 0) {
return StudyWeekStatisticsResponse.of(
Expand Down

0 comments on commit 9b03ac7

Please sign in to comment.