mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 13:00:44 -05:00
also apply the fix for the other storage types
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
553812d6b6
commit
8fc44d24eb
1 changed files with 11 additions and 1 deletions
|
|
@ -35,8 +35,11 @@ namespace OCA\Files_Sharing;
|
|||
use OC\Files\Cache\FailedCache;
|
||||
use OC\Files\Cache\NullWatcher;
|
||||
use OC\Files\Cache\Watcher;
|
||||
use OC\Files\ObjectStore\HomeObjectStoreStorage;
|
||||
use OC\Files\Storage\Common;
|
||||
use OC\Files\Storage\Home;
|
||||
use OCP\Files\Folder;
|
||||
use OCP\Files\IHomeStorage;
|
||||
use OCP\Files\Node;
|
||||
use OC\Files\Storage\FailedStorage;
|
||||
use OC\Files\Storage\Wrapper\PermissionsMask;
|
||||
|
|
@ -186,7 +189,14 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
|
|||
if ($class === '\OC\Files\Storage\Common' || $class == Common::class) {
|
||||
return true;
|
||||
}
|
||||
if (in_array($class, ['\OC\Files\Storage\Home', '\OC\Files\ObjectStore\HomeObjectStoreStorage', '\OCP\Files\IHomeStorage'])) {
|
||||
if (in_array($class, [
|
||||
'\OC\Files\Storage\Home',
|
||||
'\OC\Files\ObjectStore\HomeObjectStoreStorage',
|
||||
'\OCP\Files\IHomeStorage',
|
||||
Home::class,
|
||||
HomeObjectStoreStorage::class,
|
||||
IHomeStorage::class
|
||||
])) {
|
||||
return false;
|
||||
}
|
||||
return parent::instanceOfStorage($class);
|
||||
|
|
|
|||
Loading…
Reference in a new issue