1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00

Fixed JSON syntax

This commit is contained in:
Eldad Fux 2021-02-06 07:35:42 +02:00
parent c8b6a18939
commit 429ac1098c

View file

@ -34,8 +34,8 @@ class V06 extends Migration
break;
case Database::SYSTEM_COLLECTION_KEYS:
if ($document->getAttribute('secret', null)) {
$json = \json_decode($document->getAttribute('secret'));
if ($json->{'data'} || $json->{'method'} || $json->{'iv'} || $json->{'tag'} || $json->{'version'})
$json = \json_decode($document->getAttribute('secret'), true);
if ($json['data'] || $json['method'] || $json['iv'] || $json['tag'] || $json['version'])
{
Console::log('Secret already encrypted. Skipped: ' . $document->getId());
break;