From fd5e11a81abcc46605dac2d26f7374d34e08a152 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 4 Jun 2021 16:22:39 +0200 Subject: Add dav plugin to trigger recalculating of checksums Signed-off-by: Robin Appelman --- lib/private/Files/View.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/private/Files') diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index 113290e2686..cafa6952a62 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -1082,7 +1082,7 @@ class View { * @param string $type * @param string $path * @param bool $raw - * @return bool|null|string + * @return bool|string */ public function hash($type, $path, $raw = false) { $postFix = (substr($path, -1) === '/') ? '/' : ''; @@ -1099,12 +1099,13 @@ class View { [Filesystem::signal_param_path => $this->getHookPath($path)] ); } + /** @var Storage|null $storage */ [$storage, $internalPath] = Filesystem::resolvePath($absolutePath . $postFix); if ($storage) { return $storage->hash($type, $internalPath, $raw); } } - return null; + return false; } /** -- cgit v1.2.3