From d37eee09a580cffdcc54b8f71b345622e221d528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 17 Oct 2014 11:46:22 +0200 Subject: [PATCH] fixing usage of EncryptionException --- apps/files_encryption/lib/crypt.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index c4fc29db03..59b191097a 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -24,6 +24,7 @@ */ namespace OCA\Encryption; +use OCA\Encryption\Exceptions\EncryptionException; /** * Class for common cryptography functionality @@ -289,9 +290,9 @@ class Crypt { $padded = self::addPadding($catfile); return $padded; - } catch (OCA\Encryption\Exceptions\EncryptionException $e) { - $message = 'Could not encrypt file content (code: ' . $e->getCode . '): '; - \OCP\Util::writeLog('files_encryption', $message . $e->getMessage, \OCP\Util::ERROR); + } catch (EncryptionException $e) { + $message = 'Could not encrypt file content (code: ' . $e->getCode() . '): '; + \OCP\Util::writeLog('files_encryption', $message . $e->getMessage(), \OCP\Util::ERROR); return false; }