diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-03-31 11:18:03 +0200 |
---|---|---|
committer | Vincent Petry (Rebase PR Action) <PVince81@users.noreply.github.com> | 2022-06-07 15:38:45 +0000 |
commit | 5907bba3fdb77f899c31c08afc9f0b894847374b (patch) | |
tree | fa78d1ee950b37c5ba8d14dbb4d33b9931d375e0 /apps/files_sharing/lib | |
parent | dcf25d6c7716daa08eb6af07a720c0a0b7b6eda6 (diff) | |
download | nextcloud-server-5907bba3fdb77f899c31c08afc9f0b894847374b.tar.gz nextcloud-server-5907bba3fdb77f899c31c08afc9f0b894847374b.zip |
Fix hook encryption with cron job
Make sure the setup fs is set before using the Update service
Fix #29674
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files_sharing/lib')
-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'; |