list files which could not be decrypted

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
pull/13074/head
Bjoern Schiessle 7 years ago
parent 51f13a7e9c
commit a2eaf48f6f
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
  1. 3
      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('');
}

Loading…
Cancel
Save