Twitter: Posts are now with links again #1052

Merged
annando merged 1 commits from twitter-links into 2020.12-rc 2020-12-07 14:41:07 +01:00
1 changed files with 5 additions and 0 deletions

View File

@ -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;