Merge pull request #14946 from owncloud/dropbox-root-fix

Fix root request path for Dropbox
This commit is contained in:
Thomas Müller 2015-03-19 17:19:57 +01:00
commit c57fb62029
1 changed files with 6 additions and 1 deletions

View File

@ -100,7 +100,12 @@ class Dropbox extends \OC\Files\Storage\Common {
return $contents;
} else {
try {
$response = $this->dropbox->getMetaData($path, 'false');
$requestPath = $path;
if ($path === '.') {
$requestPath = '';
}
$response = $this->dropbox->getMetaData($requestPath, 'false');
if (!isset($response['is_deleted']) || !$response['is_deleted']) {
$this->metaData[$path] = $response;
return $response;