summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-24 12:15:53 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-24 12:15:53 +0200
commit3eba0c479f5c8e6050709a9797bb4ebd5892a90f (patch)
tree39dae37efb943b5f3bea258ac4c3ec23d4b43c75 /apps/files_external
parentc60ef7deb88c44ebedf62f8387577642d4a486a1 (diff)
downloadnextcloud-server-3eba0c479f5c8e6050709a9797bb4ebd5892a90f.tar.gz
nextcloud-server-3eba0c479f5c8e6050709a9797bb4ebd5892a90f.zip
Fix import path for 3rdparty dropbox autoloader
We moved the file by one level
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/Lib/Storage/Dropbox.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/Dropbox.php b/apps/files_external/lib/Lib/Storage/Dropbox.php
index 55ae7146572..162112f0504 100644
--- a/apps/files_external/lib/Lib/Storage/Dropbox.php
+++ b/apps/files_external/lib/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 {