aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-06-03 15:00:56 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-06-03 15:00:56 +0200
commit5dc5b7f86df5ac4943a4e8cd66e93d559d9bf6ca (patch)
tree5e46101d915f0a53b7e552c86a8162a327d64cea /lib
parent259b6ac2c1c1268728231b3417452e69c1d35064 (diff)
downloadnextcloud-server-5dc5b7f86df5ac4943a4e8cd66e93d559d9bf6ca.tar.gz
nextcloud-server-5dc5b7f86df5ac4943a4e8cd66e93d559d9bf6ca.zip
Catch NotFoundException and return no quota information which simply reflects the current state - no file storage has been initialized for the user.
Diffstat (limited to 'lib')
-rw-r--r--lib/private/encryption/manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/encryption/manager.php b/lib/private/encryption/manager.php
index 7a751956cfa..4841533cac1 100644
--- a/lib/private/encryption/manager.php
+++ b/lib/private/encryption/manager.php
@@ -151,7 +151,7 @@ class Manager implements IManager {
if (isset($this->encryptionModules[$moduleId])) {
return call_user_func($this->encryptionModules[$moduleId]['callback']);
} else {
- $message = "Module with id: $moduleId does not exists.";
+ $message = "Module with id: $moduleId does not exist.";
$hint = $this->l->t('Module with id: %s does not exist. Please enable it in your apps settings or contact your administrator.', [$moduleId]);
throw new Exceptions\ModuleDoesNotExistsException($message, $hint);
}