summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-01-02 16:35:48 +0100
committerGitHub <noreply@github.com>2019-01-02 16:35:48 +0100
commit273849a7e775efd5b6cf8dd44eeb589bcda79ec6 (patch)
tree5bb687976f5ceb6f666ed53b181a0e14053711d5
parentd2bc85728d6d3c1a790d3eb80a1b27c01c7c2132 (diff)
parenta2eaf48f6f7021223d751a66520e2c9bed368330 (diff)
downloadnextcloud-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.php3
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('');
}