Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2022-01-12 19:44:33 +0300
committerLouis Chemineau <louis@chmn.me>2022-01-12 19:44:33 +0300
commit67ccb325ef0d456eb22d54656914b43712e9b019 (patch)
tree280a8b53a9b147b8dd6b1dd0bc4d2e5adc273e77
parent04e8861192d3f40d6ceea14ad9df3a7321ed6b18 (diff)
Update lib/private/BackgroundJob/JobList.php
Signed-off-by: Louis Chemineau <louis@chmn.me>
-rw-r--r--lib/private/BackgroundJob/JobList.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/BackgroundJob/JobList.php b/lib/private/BackgroundJob/JobList.php
index 2565614ac11..0e799595939 100644
--- a/lib/private/BackgroundJob/JobList.php
+++ b/lib/private/BackgroundJob/JobList.php
@@ -93,7 +93,7 @@ class JobList implements IJobList {
->where($query->expr()->eq('class', $query->createNamedParameter($class)))
->andWhere($query->expr()->eq('argument', $query->createNamedParameter($argumentJson)));
}
- $query->executeStatement();
+ $query->execute();
}
/**