diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-06 13:36:26 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-06 13:36:26 +0100 |
commit | 75ff6c34ca6a19ff6e8f371550130e2cb4fff4ab (patch) | |
tree | 701551ed700399451f5596609123517298b2cd8f /apps | |
parent | e1c5cba90f979a0f7caff0051f0042e1ea471c49 (diff) | |
parent | 51d75275957f0341b3d1ee63b6aa4c46c15e7962 (diff) | |
download | nextcloud-server-75ff6c34ca6a19ff6e8f371550130e2cb4fff4ab.tar.gz nextcloud-server-75ff6c34ca6a19ff6e8f371550130e2cb4fff4ab.zip |
Merge pull request #20358 from owncloud/extstorage-properlythrowexception
Properly throw exception in OC_Mount_Config::getBackendStatus
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 56a7e547ec6..6c900f0f224 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -269,7 +269,7 @@ class OC_Mount_Config { } } catch (Exception $exception) { \OCP\Util::logException('files_external', $exception); - throw $e; + throw $exception; } } return self::STATUS_ERROR; |