diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-01-02 16:35:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 16:35:48 +0100 |
commit | 273849a7e775efd5b6cf8dd44eeb589bcda79ec6 (patch) | |
tree | 5bb687976f5ceb6f666ed53b181a0e14053711d5 | |
parent | d2bc85728d6d3c1a790d3eb80a1b27c01c7c2132 (diff) | |
parent | a2eaf48f6f7021223d751a66520e2c9bed368330 (diff) | |
download | nextcloud-server-273849a7e775efd5b6cf8dd44eeb589bcda79ec6.tar.gz nextcloud-server-273849a7e775efd5b6cf8dd44eeb589bcda79ec6.zip |
Merge pull request #13074 from nextcloud/improve-decrypt-all
improve decrypt all process: list files which could not be decrypted
-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(''); } |