Merge pull request #24325 from nextcloud/backport/24103/stable20
[stable20] Only check path for being accessible when the storage is a object home
This commit is contained in:
commit
86da5013c8
|
@ -824,7 +824,7 @@ class DefaultShareProvider implements IShareProvider {
|
||||||
$pathSections = explode('/', $data['path'], 2);
|
$pathSections = explode('/', $data['path'], 2);
|
||||||
// FIXME: would not detect rare md5'd home storage case properly
|
// FIXME: would not detect rare md5'd home storage case properly
|
||||||
if ($pathSections[0] !== 'files'
|
if ($pathSections[0] !== 'files'
|
||||||
&& in_array(explode(':', $data['storage_string_id'], 2)[0], ['home', 'object'])) {
|
&& (strpos($data['storage_string_id'], 'home::') === 0 || strpos($data['storage_string_id'], 'object::user') === 0)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue