From 3eba0c479f5c8e6050709a9797bb4ebd5892a90f Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 24 May 2016 12:15:53 +0200 Subject: [PATCH] Fix import path for 3rdparty dropbox autoloader We moved the file by one level --- apps/files_external/lib/Lib/Storage/Dropbox.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Storage/Dropbox.php b/apps/files_external/lib/Lib/Storage/Dropbox.php index 55ae714657..162112f050 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 {