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

Fixed test for php8

This commit is contained in:
Eldad Fux 2021-02-06 10:27:07 +02:00
parent 429ac1098c
commit 45fff3e51f

View file

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