From a2eaf48f6f7021223d751a66520e2c9bed368330 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 14 Dec 2018 12:00:49 +0100 Subject: [PATCH] list files which could not be decrypted Signed-off-by: Bjoern Schiessle --- lib/private/Encryption/DecryptAll.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/Encryption/DecryptAll.php b/lib/private/Encryption/DecryptAll.php index 16eee34733..d95a866076 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(''); }