Skip to content

Commit 9350a67

Browse files
Merge pull request #57084 from nextcloud/carl/fix-32-bits-job
2 parents b7ef5d5 + 8034de8 commit 9350a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/BackgroundJob/JobList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function add(IJob|string $job, mixed $argument = null, ?int $firstCheck =
5555
if (!$this->has($job, $argument)) {
5656
$query->insert('jobs')
5757
->values([
58-
'id' => $query->createNamedParameter($this->generator->nextId(), IQueryBuilder::PARAM_INT),
58+
'id' => $query->createNamedParameter($this->generator->nextId()),
5959
'class' => $query->createNamedParameter($class),
6060
'argument' => $query->createNamedParameter($argumentJson),
6161
'argument_hash' => $query->createNamedParameter(hash('sha256', $argumentJson)),

0 commit comments

Comments
 (0)