diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-27 11:39:58 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-27 14:59:07 +0100 |
commit | b886d3d645eef8f40c38daebd250b56ae035f37a (patch) | |
tree | 9e924c4d2dbdbc75d3bebaa41a04ae08a4ef2a22 /lib | |
parent | e733d32eec7da904f1c62666af575cdf8551c8c1 (diff) | |
download | nextcloud-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.php | 7 |
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 */ |