Merge pull request #20358 from owncloud/extstorage-properlythrowexception

Properly throw exception in OC_Mount_Config::getBackendStatus
This commit is contained in:
Thomas Müller 2015-11-06 13:36:26 +01:00
commit 75ff6c34ca

View file

@ -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;