]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Api/Mastodon/Account.php
Correct format/style errors
[friendica.git] / src / Object / Api / Mastodon / Account.php
index 3369a18c00a6855106d2efc5cd794fb3d10db8a4..5a66209777c37c3469da55f13ea60b8de3402512 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -95,7 +95,7 @@ class Account extends BaseDataTransferObject
                $this->id              = (string)$account['pid'];
                $this->username        = $account['nick'];
                $this->acct            =
-                       strpos($account['url'], $baseUrl->get() . '/') === 0 ?
+                       strpos($account['url'], $baseUrl . '/') === 0 ?
                                $account['nick'] :
                                $account['addr'];
                $this->display_name    = $account['name'];
@@ -109,9 +109,9 @@ class Account extends BaseDataTransferObject
                $this->note            = BBCode::convertForUriId($account['uri-id'], $account['about'], BBCode::EXTERNAL);
                $this->url             = $account['url'];
                $this->avatar          = Contact::getAvatarUrlForId($account['id'] ?? 0 ?: $account['pid'], Proxy::SIZE_SMALL, $account['updated'], $account['guid'] ?? '');
-               $this->avatar_static   = $this->avatar;
+               $this->avatar_static   = Contact::getAvatarUrlForId($account['id'] ?? 0 ?: $account['pid'], Proxy::SIZE_SMALL, $account['updated'], $account['guid'] ?? '', true);
                $this->header          = Contact::getHeaderUrlForId($account['id'] ?? 0 ?: $account['pid'], '', $account['updated'], $account['guid'] ?? '');
-               $this->header_static   = $this->header;
+               $this->header_static   = Contact::getHeaderUrlForId($account['id'] ?? 0 ?: $account['pid'], '', $account['updated'], $account['guid'] ?? '', true);
                $this->followers_count = $account['ap-followers_count'] ?? $account['diaspora-interacted_count'] ?? 0;
                $this->following_count = $account['ap-following_count'] ?? $account['diaspora-interacting_count'] ?? 0;
                $this->statuses_count  = $account['ap-statuses_count'] ?? $account['diaspora-post_count'] ?? 0;