You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$output->writeln("<error>Repairing is not possible when \"encryption_skip_signature_check\" is set. Please disable this flag in the configuration.</error>\n");
@@ -187,6 +194,14 @@ private function verifyFileContent($path, OutputInterface $output, $ignoreCorrec
187
194
\fclose($handle);
188
195
189
196
returntrue;
197
+
} catch (ServerNotAvailableException$e) {
198
+
// not a "bad signature" error and likely "legacy cipher" exception
199
+
// this could mean that the file is maybe not encrypted but the encrypted version is set
200
+
if (!$this->supportLegacy && $ignoreCorrectEncVersionCall === true) {
201
+
$output->writeln("<info>Attempting to fix the path: \"$path\"</info>");
0 commit comments