forked from friendica/friendica-addons
Merge pull request #987 from MrPetovan/bug/8744-twitter-add-link-suppressed-quote
[twitter] Add a link to the quoted tweet when we don't add a share block
This commit is contained in:
commit
318e351860
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue