X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=buffer%2Fbuffer.php;h=f6d16eaedaa498e65d5daa95f6531905ae36a418;hb=7cc5c73843a31a877963f3354e32edb288b18ae4;hp=d7ad69f6595617bf96aaff2d7115cb53bb3880f2;hpb=1320a26a0119a3cfde9543855d7f8292462e4c7c;p=friendica-addons.git diff --git a/buffer/buffer.php b/buffer/buffer.php index d7ad69f6..f6d16eae 100644 --- a/buffer/buffer.php +++ b/buffer/buffer.php @@ -326,21 +326,19 @@ function buffer_send(&$a,&$b) { $post["preview"] = $a->get_baseurl() . "/privacy_image_cache/".privacy_image_cache_cachename($post["preview"]); } - //if ($includedlinks AND isset($post["url"])) - // $post["url"] = short_link($post["url"]); + if ($includedlinks) { + if (isset($post["url"])) + $post["url"] = short_link($post["url"]); + if (isset($post["image"])) + $post["image"] = short_link($post["image"]); + if (isset($post["preview"])) + $post["preview"] = short_link($post["preview"]); + } // Seems like a bug to me // Buffer doesn't add links to Twitter and App.net (but pictures) if ($includedlinks AND isset($post["url"])) - $post["text"] .= " ".short_link($post["url"]); - - //if ($includedlinks AND ($post["type"] == "link")) - // $post["text"] .= " ".$post["url"]; - - //if ($includedlinks AND ($post["type"] == "video")) - // $post["text"] .= " ".$post["url"]; - - //print_r($post); + $post["text"] .= " ".$post["url"]; $message = array(); $message["text"] = $post["text"];