X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FApi%2FMastodon%2FCard.php;h=c4d21f66a32174afb708639fbb28c0f1bc80e497;hb=32bb0976046ef9fa2296d0aeb39a01b0b916dc1e;hp=2f46e4779de5de2d36d065eb86025ad93d1b609d;hpb=017bdd3fbbfe59aa9826d7eaf598c4d001669304;p=friendica.git diff --git a/src/Object/Api/Mastodon/Card.php b/src/Object/Api/Mastodon/Card.php index 2f46e4779d..c4d21f66a3 100644 --- a/src/Object/Api/Mastodon/Card.php +++ b/src/Object/Api/Mastodon/Card.php @@ -1,6 +1,6 @@ url = $attachment['url'] ?? ''; $this->title = $attachment['title'] ?? ''; $this->description = $attachment['description'] ?? ''; $this->type = $attachment['type'] ?? ''; - $this->image = $attachment['image'] ?? ''; + $this->author_name = $attachment['author_name'] ?? ''; + $this->author_url = $attachment['author_url'] ?? ''; $this->provider_name = $attachment['provider_name'] ?? ''; $this->provider_url = $attachment['provider_url'] ?? ''; + $this->width = $attachment['width'] ?? 0; + $this->height = $attachment['height'] ?? 0; + $this->image = $attachment['image'] ?? ''; + $this->blurhash = $attachment['blurhash'] ?? ''; + $this->history = $history; } /** @@ -67,10 +85,10 @@ class Card extends BaseEntity * * @return array */ - public function toArray() + public function toArray(): array { if (empty($this->url)) { - return null; + return []; } return parent::toArray();