Skip to content

Commit

Permalink
Fix for method change
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkain committed Feb 5, 2025
1 parent e4db0c3 commit 6b9b311
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private boolean checkExamination(Examination examination, List<String> filesInPA
* To avoid confusion on this, we only check data from yesterday or older.
*/
DatasetAcquisition firstAcquisition = acquisitions.get(0);
if (!LocalDate.now().equals(firstAcquisition.getCreationDate())) {
if (!LocalDate.now().equals(firstAcquisition.getImportDate())) {
acquisitions.stream().forEach(a -> {
checkAcquisition(a, filesInPACS);
});
Expand Down

0 comments on commit 6b9b311

Please sign in to comment.