Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-06-01 00:16:06 +0300
committerMaxence Lange <maxence@artificial-owl.com>2019-06-17 16:52:22 +0300
commit9dac9710e4c87ca87b857bfd9cbd1eb5841cc2ca (patch)
tree61284e794a4a78cc664ceef2c3897d44f917742c /lib/private/Files/View.php
parent2378012ee01c8eab6438d9c9005253c5b21f5e14 (diff)
Fix full text search for groupfolders
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/Files/View.php')
-rw-r--r--lib/private/Files/View.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php
index fef6153fb9a..7e177b269d1 100644
--- a/lib/private/Files/View.php
+++ b/lib/private/Files/View.php
@@ -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,