diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-12-14 12:00:49 +0100 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2018-12-14 12:00:49 +0100 |
commit | a2eaf48f6f7021223d751a66520e2c9bed368330 (patch) | |
tree | 8914f44b8d1efe0cacf80596dda22166d1b533ab /lib | |
parent | 51f13a7e9ce36abb8a9f8da481e187bf98eba021 (diff) | |
download | nextcloud-server-a2eaf48f6f7021223d751a66520e2c9bed368330.tar.gz nextcloud-server-a2eaf48f6f7021223d751a66520e2c9bed368330.zip |
list files which could not be decrypted
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Encryption/DecryptAll.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/Encryption/DecryptAll.php b/lib/private/Encryption/DecryptAll.php index 16eee347334..d95a8660762 100644 --- a/lib/private/Encryption/DecryptAll.php +++ b/lib/private/Encryption/DecryptAll.php @@ -105,6 +105,9 @@ class DecryptAll { $this->output->writeln('maybe the user is not set up in a way that supports this operation: '); foreach ($this->failed as $uid => $paths) { $this->output->writeln(' ' . $uid); + foreach ($paths as $path) { + $this->output->writeln(' ' . $path); + } } $this->output->writeln(''); } |