diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-10-28 15:05:07 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2024-01-09 10:56:14 +0100 |
commit | 82b5a19a35b780bf18ebac46711166158a5a6cb2 (patch) | |
tree | bbc44ee4e65f4b7c2f480962f15a9aeb0ca9587f /apps/files_sharing/lib/Controller/ShareController.php | |
parent | 7b6a650b6e09b07d4b85a4ae84eb64a6c32b217f (diff) | |
download | nextcloud-server-82b5a19a35b780bf18ebac46711166158a5a6cb2.tar.gz nextcloud-server-82b5a19a35b780bf18ebac46711166158a5a6cb2.zip |
fix: public dav and files_sharing testing fixes
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/lib/Controller/ShareController.php')
-rw-r--r-- | apps/files_sharing/lib/Controller/ShareController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareController.php b/apps/files_sharing/lib/Controller/ShareController.php index bd9cdffa83d..eebf964c8f9 100644 --- a/apps/files_sharing/lib/Controller/ShareController.php +++ b/apps/files_sharing/lib/Controller/ShareController.php @@ -204,7 +204,7 @@ class ShareController extends AuthPublicShareController { return $this->shareManager->checkPassword($this->share, $password); } - protected function getPasswordHash(): string { + protected function getPasswordHash(): ?string { return $this->share->getPassword(); } |