[twitter] Use correct variable name for emptiness test in twitter_convert_share() #974

Merged
MrPetovan merged 1 commit from bug/notices into develop 2020-04-04 19:12:20 +02:00

View file

@ -1956,7 +1956,7 @@ function twitter_update_mentions($body)
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'];
}