Bluesky: don't remove hashtags upon posting

pull/1402/head
Michael 2023-07-08 14:54:56 +00:00
parent 463f5eb7e0
commit d80d376762
1 changed files with 2 additions and 2 deletions

View File

@ -659,8 +659,8 @@ function bluesky_create_post(array $item, stdClass $root = null, stdClass $paren
function bluesky_get_urls(string $body): array
{
// Remove all hashtags and mentions
$body = preg_replace("/([#@!])\[url\=(.*?)\](.*?)\[\/url\]/ism", '', $body);
// Remove all hashtag and mention links
$body = preg_replace("/([#@!])\[url\=(.*?)\](.*?)\[\/url\]/ism", '$1$3', $body);
$urls = [];