]> git.mxchange.org Git - friendica-addons.git/commitdiff
Update twitter/twitter.php
authorMichael Vogel <icarus@dabo.de>
Tue, 28 Sep 2021 03:22:01 +0000 (05:22 +0200)
committerGitHub <noreply@github.com>
Tue, 28 Sep 2021 03:22:01 +0000 (05:22 +0200)
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
twitter/twitter.php

index 66eb315a62c90cae6c4f09a94ce11e9527270e19..912903e4212e99cb93d85ce013ab6e60bfc3b677 100644 (file)
@@ -680,7 +680,7 @@ function twitter_post_hook(App $a, array &$b)
                }
 
                // Add the link to the body if the type isn't a photo or there are more than 4 images in the post
-               if ((strpos($msg, $msgarr['url']) === false) && !empty($msgarr['url']) && (($msgarr['type'] != 'photo') || empty($msgarr['images']) || (count($msgarr['images']) > 4))) {
+               if (!empty($msgarr['url']) && (strpos($msg, $msgarr['url']) === false) && (($msgarr['type'] != 'photo') || empty($msgarr['images']) || (count($msgarr['images']) > 4))) {
                        $msg .= "\n" . $msgarr['url'];
                }