diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index f9cdfd1f9..ec56b2c35 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1411,7 +1411,16 @@ class BBCode } elseif (!in_array($simple_html, [self::INTERNAL, self::EXTERNAL, self::CONNECTORS])) { $text = self::removeAttachment($text, true); } else { - $text = self::convertAttachment($text, $simple_html, $try_oembed); + $data = self::getAttachmentData($text); + if (!empty($data['image'])) { + $data['image'] = Post\Link::getByLink($uriid, $data['image']); + } + + if (!empty($data['preview'])) { + $data['preview'] = Post\Link::getByLink($uriid, $data['preview']); + } + + $text = self::convertAttachment($text, $simple_html, $try_oembed, $data); } $nosmile = strpos($text, '[nosmile]') !== false;