Fix full text search for groupfolders
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
e69e2c5473
commit
8c1ce34a03
|
@ -1928,7 +1928,7 @@ class View {
|
|||
if ($mount) {
|
||||
try {
|
||||
$storage = $mount->getStorage();
|
||||
if ($storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
|
||||
if ($storage && $storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
|
||||
$storage->acquireLock(
|
||||
$mount->getInternalPath($absolutePath),
|
||||
$type,
|
||||
|
@ -1969,7 +1969,7 @@ class View {
|
|||
if ($mount) {
|
||||
try {
|
||||
$storage = $mount->getStorage();
|
||||
if ($storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
|
||||
if ($storage && $storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
|
||||
$storage->changeLock(
|
||||
$mount->getInternalPath($absolutePath),
|
||||
$type,
|
||||
|
|
|
@ -1430,6 +1430,9 @@ class Manager implements IManager {
|
|||
if ($path->getId() !== $userFolder->getId() && !$userFolder->isSubNode($path)) {
|
||||
$nodes = $userFolder->getById($path->getId());
|
||||
$path = array_shift($nodes);
|
||||
if ($path->getOwner() === null) {
|
||||
return [];
|
||||
}
|
||||
$owner = $path->getOwner()->getUID();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue