Modfy links for attachments

This commit is contained in:
Michael 2021-07-06 08:40:59 +00:00
parent 59a77ceac8
commit b7a4ef0ec1
1 changed files with 10 additions and 1 deletions

View File

@ -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;