diff options
author | Robin Appelman <robin@icewind.nl> | 2021-03-24 14:56:40 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2021-03-24 14:56:40 +0100 |
commit | 8a92229485095dbd8f379e2b489a3aa48cc37c79 (patch) | |
tree | c2625fc1dd67a28f6cb95746f4ae8a2d6805dcf6 /lib/private/Files/Node/Folder.php | |
parent | e8184eaaada6bfe373877226e4a1ddfab2b2a1c6 (diff) | |
download | nextcloud-server-8a92229485095dbd8f379e2b489a3aa48cc37c79.tar.gz nextcloud-server-8a92229485095dbd8f379e2b489a3aa48cc37c79.zip |
getStorage can also return null
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Node/Folder.php')
-rw-r--r-- | lib/private/Files/Node/Folder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Node/Folder.php b/lib/private/Files/Node/Folder.php index ec73a8c06ae..7b1eff47cd5 100644 --- a/lib/private/Files/Node/Folder.php +++ b/lib/private/Files/Node/Folder.php @@ -494,7 +494,7 @@ class Folder extends Node implements \OCP\Files\Folder { $mounts[] = $this->getMountPoint(); $mounts = array_filter($mounts, function (IMountPoint $mount) { - return $mount->getStorage(); + return $mount->getStorage() !== null; }); $storageIds = array_map(function (IMountPoint $mount) { return $mount->getStorage()->getCache()->getNumericStorageId(); |