diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-24 13:26:23 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-24 13:26:23 +0100 |
commit | 122918487356603cad8e8805f385062be8ecd8a5 (patch) | |
tree | 4b5ad682c9eaffd6a229f677e929e7fbb94ba805 /apps | |
parent | e08ebe87dcd748deecba52714cf2711095671475 (diff) | |
download | nextcloud-server-122918487356603cad8e8805f385062be8ecd8a5.tar.gz nextcloud-server-122918487356603cad8e8805f385062be8ecd8a5.zip |
Fix code that never worked
Introduced with https://github.com/owncloud/core/commit/1df8a5a774ae5d665849daf74540d967826d5e11 in February 2013…
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/sftp.php | 2 |
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; |