BUGFIX: manual is not a float

This commit is contained in:
Jeroen De Meerleer 2021-06-01 21:26:25 +02:00
parent 157bb13567
commit e6a32bc2ba
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ class Job extends Repository
}
$starttime = (float)$this->getTempVar($job['id'], 'starttime');
$this->deleteTempVar($job['id'], 'starttime');
$manual = (float)$this->getTempVar($job['id'], 'manual');
$manual = $this->getTempVar($job['id'], 'manual');
$this->deleteTempVar($job['id'], 'manual');
$jobsSql = "UPDATE job SET running = :status WHERE id = :id";