Skip to content

Commit 7471f91

Browse files
Update services/storage/src/simcore_service_storage/simcore_s3_dsm.py
Co-authored-by: Copilot <[email protected]>
1 parent 7d787ba commit 7471f91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/storage/src/simcore_service_storage/simcore_s3_dsm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,14 +1023,14 @@ async def _search_project_s3_files(
10231023
if (
10241024
last_modified_from
10251025
and s3_obj.last_modified
1026-
and s3_obj.last_modified >= last_modified_from
1026+
and s3_obj.last_modified < last_modified_from
10271027
):
10281028
continue
10291029

10301030
if (
10311031
last_modified_until
10321032
and s3_obj.last_modified
1033-
and s3_obj.last_modified <= last_modified_until
1033+
and s3_obj.last_modified > last_modified_until
10341034
):
10351035
continue
10361036

0 commit comments

Comments
 (0)