X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FApi%2FMastodon%2FCard.php;h=c4d21f66a32174afb708639fbb28c0f1bc80e497;hb=32bb0976046ef9fa2296d0aeb39a01b0b916dc1e;hp=33e3c105994515e3d32281da73feca1bd73c0885;hpb=a6423031eba1236127160ced3028e36401f40536;p=friendica.git diff --git a/src/Object/Api/Mastodon/Card.php b/src/Object/Api/Mastodon/Card.php index 33e3c10599..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; } /**