diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-06-10 16:27:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 16:27:59 +0200 |
commit | 85cc867143ab2bd55bffe8d097ac1f2e8116fab6 (patch) | |
tree | 5ee389381e45025f6e3dd95974ed4c0797db7d69 /apps/files_sharing | |
parent | e6e18620002d1da5238e43b9026ca529ae2bda8e (diff) | |
parent | 5907bba3fdb77f899c31c08afc9f0b894847374b (diff) | |
download | nextcloud-server-85cc867143ab2bd55bffe8d097ac1f2e8116fab6.tar.gz nextcloud-server-85cc867143ab2bd55bffe8d097ac1f2e8116fab6.zip |
Merge pull request #31771 from nextcloud/fix/hook-encryption-cron
Fix hook encryption with cron job
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/ExpireSharesJob.php | 2 |
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'; |