diff --git a/src/Protobuf/Response/ConfigQueryResponse.php b/src/Protobuf/Response/ConfigQueryResponse.php index 0e8ed09..eba9100 100644 --- a/src/Protobuf/Response/ConfigQueryResponse.php +++ b/src/Protobuf/Response/ConfigQueryResponse.php @@ -29,7 +29,7 @@ class ConfigQueryResponse extends Response public function __construct(array $json) { $this->content = $json['content']; - $this->encryptedDataKey = $json['encryptedDataKey']; + $this->encryptedDataKey = $json['encryptedDataKey'] ?? ''; $this->contentType = $json['contentType']; $this->md5 = $json['md5']; $this->lastModified = $json['lastModified'];