summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-15 14:05:38 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-15 14:05:38 +0200
commitf52eb842441222d58abbb42b97f57a19db0e4d91 (patch)
tree949dac8b4c68e35f7453e6fe8af1df24bf6f507a
parent7529605676bb8ad83898e2e7271454fd936587ae (diff)
parentbaff79cc6389f449a2c49624f51dce3fe59864d0 (diff)
downloadnextcloud-server-f52eb842441222d58abbb42b97f57a19db0e4d91.tar.gz
nextcloud-server-f52eb842441222d58abbb42b97f57a19db0e4d91.zip
Merge pull request #24024 from owncloud/dropbox-autoload
Fix loading the dropbox autoloader
-rw-r--r--apps/files_external/lib/storage/dropbox.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/storage/dropbox.php b/apps/files_external/lib/storage/dropbox.php
index 2d83fdbe0cb..55ae7146572 100644
--- a/apps/files_external/lib/storage/dropbox.php
+++ b/apps/files_external/lib/storage/dropbox.php
@@ -33,7 +33,7 @@ use GuzzleHttp\Exception\RequestException;
use Icewind\Streams\IteratorDirectory;
use Icewind\Streams\RetryWrapper;
-require_once __DIR__ . '/../3rdparty/Dropbox/autoload.php';
+require_once __DIR__ . '/../../3rdparty/Dropbox/autoload.php';
class Dropbox extends \OC\Files\Storage\Common {