From e3947b8812fc931d6885daedce12c8de2f88ccad Mon Sep 17 00:00:00 2001 From: Christopher Hertel Date: Fri, 7 Nov 2025 18:24:33 +0100 Subject: [PATCH] Fix blob resource referencing itself while serializing instead of parent --- src/Schema/Content/BlobResourceContents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Schema/Content/BlobResourceContents.php b/src/Schema/Content/BlobResourceContents.php index c8b07b05..309e2760 100644 --- a/src/Schema/Content/BlobResourceContents.php +++ b/src/Schema/Content/BlobResourceContents.php @@ -79,7 +79,7 @@ public function jsonSerialize(): array { return [ 'blob' => $this->blob, - ...$this->jsonSerialize(), + ...parent::jsonSerialize(), ]; } }