Properly throw exception in OC_Mount_Config::getBackendStatus

This commit is contained in:
Vincent Petry 2015-11-06 12:29:24 +01:00
parent bf941032a3
commit 51d7527595

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;