mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 01:43:42 +00:00
[twitter] Use correct variable name for emptiness test in twitter_convert_share()
This commit is contained in:
parent
cb34593770
commit
079e56fb1c
1 changed files with 1 additions and 1 deletions
|
@ -1956,7 +1956,7 @@ function twitter_update_mentions($body)
|
||||||
|
|
||||||
function twitter_convert_share(array $attributes, array $author_contact, $content, $is_quote_share)
|
function twitter_convert_share(array $attributes, array $author_contact, $content, $is_quote_share)
|
||||||
{
|
{
|
||||||
if (empty($contact)) {
|
if (empty($author_contact)) {
|
||||||
return $content . "\n\n" . $attributes['link'];
|
return $content . "\n\n" . $attributes['link'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue