Skip to content
Snippets Groups Projects
Commit b16b184e authored by Dimitris Bozelos's avatar Dimitris Bozelos
Browse files

Issue #3380592 Corrected end time filter in state-managed imports

parent 64e7bbb5
Branches
Tags
No related merge requests found
...@@ -194,7 +194,7 @@ class ManagedImportRemoteListFilters implements EventSubscriberInterface { ...@@ -194,7 +194,7 @@ class ManagedImportRemoteListFilters implements EventSubscriberInterface {
'import_list' 'import_list'
); );
if (!empty($last_run['end_time'])) { if (!empty($last_run['end_time'])) {
return $last_run['end_time']; return $last_run['end_time'] + 1;
} }
// If we do have a fallback start time, use that. // If we do have a fallback start time, use that.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment