From: Michael Date: Tue, 11 Apr 2023 18:47:51 +0000 (+0000) Subject: Fixes "Trying to access array offset on value of type bool" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8016f5c67c7ff77b9e647f0a99b6949b1d0c816a;p=friendica.git Fixes "Trying to access array offset on value of type bool" --- diff --git a/src/Factory/Api/Mastodon/Attachment.php b/src/Factory/Api/Mastodon/Attachment.php index afc2f7c271..6f881808ec 100644 --- a/src/Factory/Api/Mastodon/Attachment.php +++ b/src/Factory/Api/Mastodon/Attachment.php @@ -136,7 +136,7 @@ class Attachment extends BaseFactory $url = $this->baseUrl . '/photo/' . $photo['resource-id'] . '-0.' . $ext; $preview = Photo::selectFirst(['scale'], ["`resource-id` = ? AND `uid` = ? AND `scale` > ?", $photo['resource-id'], $photo['uid'], 0], ['order' => ['scale']]); - if (empty($scale)) { + if (!empty($preview)) { $preview_url = $this->baseUrl . '/photo/' . $photo['resource-id'] . '-' . $preview['scale'] . '.' . $ext; } else { $preview_url = '';