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:
authorLukas Reschke <lukas@owncloud.com>2015-02-24 15:26:23 +0300
committerLukas Reschke <lukas@owncloud.com>2015-02-24 15:26:23 +0300
commit122918487356603cad8e8805f385062be8ecd8a5 (patch)
tree4b5ad682c9eaffd6a229f677e929e7fbb94ba805 /apps/files_external/lib/sftp.php
parente08ebe87dcd748deecba52714cf2711095671475 (diff)
Fix code that never worked
Introduced with https://github.com/owncloud/core/commit/1df8a5a774ae5d665849daf74540d967826d5e11 in February 2013…
Diffstat (limited to 'apps/files_external/lib/sftp.php')
-rw-r--r--apps/files_external/lib/sftp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php
index 572829f0fdd..82dfc87501c 100644
--- a/apps/files_external/lib/sftp.php
+++ b/apps/files_external/lib/sftp.php
@@ -233,7 +233,7 @@ class SFTP extends \OC\Files\Storage\Common {
if ($stat['type'] == NET_SFTP_TYPE_DIRECTORY) {
return 'dir';
}
- } catch (\Exeption $e) {
+ } catch (\Exception $e) {
}
return false;