summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-27 11:39:58 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-27 14:59:07 +0100
commitb886d3d645eef8f40c38daebd250b56ae035f37a (patch)
tree9e924c4d2dbdbc75d3bebaa41a04ae08a4ef2a22 /lib
parente733d32eec7da904f1c62666af575cdf8551c8c1 (diff)
downloadnextcloud-server-b886d3d645eef8f40c38daebd250b56ae035f37a.tar.gz
nextcloud-server-b886d3d645eef8f40c38daebd250b56ae035f37a.zip
Make MappedLocal::isLocal() true like for Local
Missed in 788c8540aa6aac50795c37b088eeaa561d44b86c
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/storage/mappedlocal.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php
index 1b26e3ac0f9..d749e0e9d54 100644
--- a/lib/private/files/storage/mappedlocal.php
+++ b/lib/private/files/storage/mappedlocal.php
@@ -353,6 +353,13 @@ class MappedLocal extends \OC\Files\Storage\Common {
}
/**
+ * {@inheritdoc}
+ */
+ public function isLocal() {
+ return true;
+ }
+
+ /**
* @param string $path
* @return string
*/