From 4889e8248926193b2f5e72060dbf809ee5aca3e6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 30 Apr 2021 22:31:24 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Hypolite Petovan --- src/Model/Item.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index 9d142facc0..1d8742926d 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -184,7 +184,7 @@ class Item $content_fields = ['raw-body' => trim($fields['raw-body'] ?? $fields['body'])]; // Remove all media attachments from the body and store them in the post-media table - // @todo On shared postings (Diaspora style and commented reshare) don't fetch content from rhe shared part + // @todo On shared postings (Diaspora style and commented reshare) don't fetch content from the shared part $content_fields['raw-body'] = Post\Media::insertFromBody($item['uri-id'], $content_fields['raw-body']); $content_fields['raw-body'] = self::setHashtags($content_fields['raw-body']); } @@ -2833,7 +2833,7 @@ class Item * @param string $body * @param string $content * @param bool $shared - * @param array $ignore_links + * @param array $ignore_links A list of URLs to ignore * @return string modified content */ private static function addLinkAttachment(array $attachments, string $body, string $content, bool $shared, array $ignore_links) @@ -2883,7 +2883,7 @@ class Item } DI::profiler()->saveTimestamp($stamp1, 'rendering'); - if (!empty($data) && !in_array($data['url'], $ignore_links)) { + if (isset($data['url']) && !in_array($data['url'], $ignore_links)) { // @todo Use a template $rendered = BBCode::convertAttachment('', BBCode::INTERNAL, false, $data); if ($shared) {