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
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-06-10 17:27:59 +0300
committerGitHub <noreply@github.com>2022-06-10 17:27:59 +0300
commit85cc867143ab2bd55bffe8d097ac1f2e8116fab6 (patch)
tree5ee389381e45025f6e3dd95974ed4c0797db7d69 /apps
parente6e18620002d1da5238e43b9026ca529ae2bda8e (diff)
parent5907bba3fdb77f899c31c08afc9f0b894847374b (diff)
Merge pull request #31771 from nextcloud/fix/hook-encryption-cron
Fix hook encryption with cron job
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/lib/ExpireSharesJob.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/ExpireSharesJob.php b/apps/files_sharing/lib/ExpireSharesJob.php
index dd0979e4b0b..f5eb5856aea 100644
--- a/apps/files_sharing/lib/ExpireSharesJob.php
+++ b/apps/files_sharing/lib/ExpireSharesJob.php
@@ -85,7 +85,7 @@ class ExpireSharesJob extends TimedJob {
)
);
- $shares = $qb->execute();
+ $shares = $qb->executeQuery();
while ($share = $shares->fetch()) {
if ((int)$share['share_type'] === IShare::TYPE_LINK) {
$id = 'ocinternal';