Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'remote.php')
-rw-r--r--remote.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/remote.php b/remote.php
index 3e2398a0623..a81f7ba2c64 100644
--- a/remote.php
+++ b/remote.php
@@ -137,7 +137,7 @@ try {
$file = resolveService($service);
- if(is_null($file)) {
+ if (is_null($file)) {
throw new RemoteException('Path not found', 404);
}
@@ -165,7 +165,6 @@ try {
}
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
require_once $file;
-
} catch (Exception $ex) {
handleException($ex);
} catch (Error $e) {