mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Fixed test for php8
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user