Skip to content

Commit

Permalink
fix dayofweek. Я ненавижу джавовские временные структуры
Browse files Browse the repository at this point in the history
  • Loading branch information
MihailCCfit committed Jun 24, 2024
1 parent 158a541 commit 6c2fa66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public Nasrano convert(AlgoSchedule algoSchedule, long id) {
lessonWithTime.audience().groupCapacity()
),
studyGroupResponseDTOS,
DayOfWeek.of(lessonWithTime.time().day()),
DayOfWeek.of(lessonWithTime.time().day() + 1),
(long) lessonWithTime.time().cellNumber()
);
cells.add(lessonDTO);
Expand Down

0 comments on commit 6c2fa66

Please sign in to comment.