diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-06-01 14:29:31 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-10-20 20:27:44 +0200 |
commit | 246bb9f33d23340d821384b25097066f65c5d483 (patch) | |
tree | 1f5b8692db952c537e54f1816eff9ec9949560a7 /lib/private/Files/View.php | |
parent | 98c846456417989d995fe868731e2b1bd77f0f37 (diff) | |
download | nextcloud-server-246bb9f33d23340d821384b25097066f65c5d483.tar.gz nextcloud-server-246bb9f33d23340d821384b25097066f65c5d483.zip |
Move OC\Files\Storage\Shared to the right namespace
Diffstat (limited to 'lib/private/Files/View.php')
-rw-r--r-- | lib/private/Files/View.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index fa6ba20c342..79c4d4cabed 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -1357,7 +1357,7 @@ class View { $subStorage = $mount->getStorage(); if ($subStorage) { // exclude shared storage ? - if ($extOnly && $subStorage instanceof \OC\Files\Storage\Shared) { + if ($extOnly && $subStorage instanceof \OCA\Files_Sharing\SharedStorage) { continue; } $subCache = $subStorage->getCache(''); |