forked from friendica/friendica-addons
Merge pull request #1052 from annando/twitter-links
Twitter: Posts are now with links again
This commit is contained in:
commit
30364c8ac0
|
@ -675,6 +675,11 @@ function twitter_post_hook(App $a, array &$b)
|
|||
$msg = Plaintext::shorten($msgarr["title"], $max_char - 50);
|
||||
}
|
||||
|
||||
// Add the link to the body if the type isn't a photo or there are more than 4 images in the post
|
||||
if (!empty($msgarr['url']) && (($msgarr['type'] != 'photo') || empty($msgarr['images']) || (count($msgarr['images']) > 4))) {
|
||||
$msg .= "\n" . $msgarr['url'];
|
||||
}
|
||||
|
||||
if (empty($msg)) {
|
||||
Logger::notice('Empty message', ['id' => $b['id']]);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue