From b184df1108eaba6fd450ffafff4c9334805c4fee Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 17 Jun 2021 19:14:35 +0200 Subject: [PATCH] Update src/Object/Api/Mastodon/Account.php Co-authored-by: Hypolite Petovan --- src/Object/Api/Mastodon/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Object/Api/Mastodon/Account.php b/src/Object/Api/Mastodon/Account.php index 04601da218..58a7c5ffe6 100644 --- a/src/Object/Api/Mastodon/Account.php +++ b/src/Object/Api/Mastodon/Account.php @@ -115,7 +115,7 @@ class Account extends BaseDataTransferObject $this->url = $publicContact['url']; $this->avatar = ($userContact['photo'] ?? $publicContact['photo']) ?: Proxy::proxifyUrl($userContact['avatar'] ?? $publicContact['avatar']); $this->avatar_static = $this->avatar; - $this->header = Proxy::proxifyUrl(($userContact['header'] ?? $publicContact['header']) ?? ''); + $this->header = Proxy::proxifyUrl($userContact['header'] ?? $publicContact['header'] ?? ''); $this->header_static = $this->header; $this->followers_count = $apcontact['followers_count'] ?? 0; $this->following_count = $apcontact['following_count'] ?? 0;