summaryrefslogtreecommitdiffstats
path: root/lib/files/filesystem.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-12-02 03:43:51 +0100
committerRobin Appelman <icewind@owncloud.com>2012-12-02 03:43:51 +0100
commit01eb5d2790638ab836adc95a9726b6a1003562b9 (patch)
treeb0337019d2b3f2078da332c7d3a59c45063f8248 /lib/files/filesystem.php
parent72b6faa69d693fa0d2a21d592b6ae36023757872 (diff)
downloadnextcloud-server-01eb5d2790638ab836adc95a9726b6a1003562b9.tar.gz
nextcloud-server-01eb5d2790638ab836adc95a9726b6a1003562b9.zip
fix some edge cases while scanning the root of a storage
Diffstat (limited to 'lib/files/filesystem.php')
-rw-r--r--lib/files/filesystem.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php
index 4e3eb1989b7..724c83b3618 100644
--- a/lib/files/filesystem.php
+++ b/lib/files/filesystem.php
@@ -143,8 +143,8 @@ class Filesystem {
* @return string
*/
static public function getMountPoint($path) {
- \OC_Hook::emit(self::CLASSNAME, 'get_mountpoint', array('path' => $path));
$path = self::normalizePath($path) . '/';
+ \OC_Hook::emit(self::CLASSNAME, 'get_mountpoint', array('path' => $path));
$foundMountPoint = '';
$mountPoints = array_keys(self::$mounts);
foreach ($mountPoints as $mountpoint) {
@@ -205,7 +205,7 @@ class Filesystem {
$mountpoint = self::getMountPoint($path);
if ($mountpoint) {
$storage = self::getStorage($mountpoint);
- if ($mountpoint === $path) {
+ if ($mountpoint === $path or $mountpoint . '/' === $path) {
$internalPath = '';
} else {
$internalPath = substr($path, strlen($mountpoint));