From: Michael Date: Sat, 31 Jul 2021 06:22:08 +0000 (+0000) Subject: Style X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e89d0f2599396689cfdc472da7f90a45c129d642;p=friendica.git Style --- diff --git a/src/Factory/Api/Mastodon/ScheduledStatus.php b/src/Factory/Api/Mastodon/ScheduledStatus.php index 608d615ca1..80dcdfc595 100644 --- a/src/Factory/Api/Mastodon/ScheduledStatus.php +++ b/src/Factory/Api/Mastodon/ScheduledStatus.php @@ -60,11 +60,12 @@ class ScheduledStatus extends BaseFactory throw new HTTPException\NotFoundException('Scheduled status with ID ' . $id . ' not found for user ' . $uid . '.'); } - $media_ids = []; + $media_ids = []; $media_attachments = []; foreach ($parameters['attachments'] as $attachment) { $id = Photo::getIdForName($attachment['url']); - $media_ids[] = (string)$id; + + $media_ids[] = (string)$id; $media_attachments[] = DI::mstdnAttachment()->createFromPhoto($id); }