Skip to content

Commit

Permalink
Merge pull request #35 from it-at-m/feature-1498-wiederaufruf-erst-na…
Browse files Browse the repository at this point in the history
…ch-5-minuten-patch

Update WorkstationProcessNext.php
  • Loading branch information
ThomasAFink authored Nov 30, 2023
2 parents 1a79cb8 + affa54f commit bb71716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmsadmin/src/Zmsadmin/WorkstationProcessNext.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function readResponse(
$filteredProcessList = new ProcessList;

foreach ($processList as $process) {
if ($process->status === "queued") {
if ($process->status === "queued" || $process->status === "confirmed") {
$timeoutTimeUnix = isset($process->timeoutTime) ? $this->timeToUnix($process->timeoutTime) : null;
$currentTimeUnix = time();

Expand Down

0 comments on commit bb71716

Please sign in to comment.