Simplified share element

This commit is contained in:
Michael 2022-10-07 05:51:36 +00:00
parent 8e9acfe210
commit d7a9745ffd
2 changed files with 13 additions and 4 deletions

View File

@ -44,7 +44,7 @@ function share_init(App $a) {
$pos = strpos($item['body'], "[share");
$o = substr($item['body'], $pos);
} else {
$o = "[share message_id='" . $item['uri'] . "'][/share]";
$o = "[share]" . $item['uri'] . "[/share]";
}
echo $o;

View File

@ -3666,9 +3666,18 @@ class Item
*/
public static function improveSharedDataInBody(array $item): string
{
$shared = BBCode::fetchShareAttributes($item['body']);
if (empty($shared['link']) && empty($shared['message_id'])) {
return $item['body'];
if (preg_match('#\[share](.*)\[/share]#', $item['body'], $matches)) {
$shared = [
'message_id' => $matches[1],
'link' => '',
'guid' => '',
'profile' => '',
];
} else {
$shared = BBCode::fetchShareAttributes($item['body']);
if (empty($shared['link']) && empty($shared['message_id'])) {
return $item['body'];
}
}
$id = self::fetchByLink($shared['link'] ?: $shared['message_id']);