Disable the encryption of uploads, in line with other efforts not to encrypt local data.

This commit is contained in:
James Cole
2019-08-25 07:25:01 +02:00
parent 6b86a35ffb
commit af2f085aa7
8 changed files with 46 additions and 41 deletions

View File

@@ -148,7 +148,7 @@ class DecryptDatabase extends Command
private function tryDecrypt($value)
{
try {
$value = Crypt::decrypt($value);
$value = Crypt::decrypt($value); // verified
} catch (DecryptException $e) {
if ('The MAC is invalid.' === $e->getMessage()) {
throw new FireflyException($e->getMessage()); // @codeCoverageIgnore