[twitter] Add a link to the quoted tweet when we don't add a share block

This commit is contained in:
Hypolite Petovan 2020-06-06 19:27:50 -04:00
parent ed67e2cd6e
commit 03c2a30991
1 changed files with 20 additions and 17 deletions

View File

@ -84,7 +84,6 @@ use Friendica\Model\Item;
use Friendica\Model\ItemContent;
use Friendica\Model\ItemURI;
use Friendica\Model\Tag;
use Friendica\Model\Term;
use Friendica\Model\User;
use Friendica\Protocol\Activity;
use Friendica\Util\ConfigFileLoader;
@ -1609,9 +1608,12 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
}
}
if (!empty($post->quoted_status) && !$noquote) {
if (!empty($post->quoted_status)) {
if ($noquote) {
// To avoid recursive share blocks we just provide the link to avoid removing quote context.
$postarray['body'] .= "\n\nhttps://twitter.com/" . $post->quoted_status->user->screen_name . "/status/" . $post->quoted_status->id_str;
} else {
$quoted = twitter_createpost($a, $uid, $post->quoted_status, $self, false, false, true, $uriid);
if (!empty($quoted['body'])) {
$postarray['body'] .= "\n" . share_header(
$quoted['author-name'],
@ -1628,6 +1630,7 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
$postarray['body'] .= "\n\nhttps://twitter.com/" . $post->quoted_status->user->screen_name . "/status/" . $post->quoted_status->id_str;
}
}
}
return $postarray;
}