fix: change IN_PROGRESS to RUNNING

This commit is contained in:
Marvin Flock
2026-05-17 15:57:46 +02:00
parent 77f8b82a25
commit c3dff8bcbd
@@ -295,7 +295,7 @@ final class SMExporter
$today = new DateTimeImmutable('today');
$cutoff = new DateTimeImmutable($cutoffDate);
return ($cutoff < $today) ? 'FINISHED' : 'IN_PROGRESS';
return ($cutoff < $today) ? 'FINISHED' : 'RUNNING';
}
/**