Skip to content

Commit e3947b8

Browse files
committed
Fix blob resource referencing itself while serializing instead of parent
1 parent 85549cb commit e3947b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Schema/Content/BlobResourceContents.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function jsonSerialize(): array
7979
{
8080
return [
8181
'blob' => $this->blob,
82-
...$this->jsonSerialize(),
82+
...parent::jsonSerialize(),
8383
];
8484
}
8585
}

0 commit comments

Comments
 (0)