diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-12 11:05:12 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-12 11:05:12 +0100 |
commit | 6b594c1eb84dccb57c5050f9d686734c98cc6d39 (patch) | |
tree | e0372c641a03bdcfb5691dc8e274c6cdcffb66af /apps/files_external/lib/swift.php | |
parent | a953786d7952f2d758a8111302822708d906875e (diff) | |
download | nextcloud-server-6b594c1eb84dccb57c5050f9d686734c98cc6d39.tar.gz nextcloud-server-6b594c1eb84dccb57c5050f9d686734c98cc6d39.zip |
fixing namespace
Diffstat (limited to 'apps/files_external/lib/swift.php')
-rw-r--r-- | apps/files_external/lib/swift.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index bab49524746..20af67cb8b6 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -264,7 +264,7 @@ class SWIFT extends \OC\Files\Storage\Common{ private function getSubContainerFile($container) { try { return $container->get_object(self::SUBCONTAINER_FILE); - } catch(NoSuchObjectException $e) { + } catch(\NoSuchObjectException $e) { return $container->create_object(self::SUBCONTAINER_FILE); } } |