Skip to content

Commit

Permalink
Merge branch 'develop' into 299_absolute_obs_until_study_end_runtime_…
Browse files Browse the repository at this point in the history
…calculation
  • Loading branch information
drtyyj committed Jun 3, 2024
2 parents 69c3106 + b4d060f commit d1faf44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public Optional<Duration> getStudyDuration(Long studyId) {
java.time.Period.between(
Objects.requireNonNullElse(study.getStartDate(), study.getPlannedStartDate()),
Objects.requireNonNullElse(study.getEndDate(), study.getPlannedEndDate())
).getDays())
).getDays() + 1)
.setUnit(Duration.Unit.DAY)
))
);
Expand Down

0 comments on commit d1faf44

Please sign in to comment.