From: Michael Date: Sat, 16 Mar 2024 10:30:43 +0000 (+0000) Subject: Issue 13984: Fix preview picture X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2ecdd683ac8caf1eb55b175922c42582278ae35e;p=friendica.git Issue 13984: Fix preview picture --- diff --git a/mod/item.php b/mod/item.php index 2ea7c96240..5d20cc04a6 100644 --- a/mod/item.php +++ b/mod/item.php @@ -278,7 +278,7 @@ function item_process(array $post, array $request, bool $preview, string $return $post['quote-uri-id'] = Item::getQuoteUriId($post['body'], $post['uid']); $post['body'] = BBCode::removeSharedData(Item::setHashtags($post['body'])); $post['writable'] = true; - $post['sensitive'] = true; + $post['sensitive'] = false; $o = DI::conversation()->render([$post], Conversation::MODE_SEARCH, false, true);