forked from friendica/friendica-addons
Merge pull request #888 from annando/twitter-notice
Fix notice in Twitter addon
This commit is contained in:
commit
c675cd4cb2
|
@ -630,7 +630,7 @@ function twitter_post_hook(App $a, array &$b)
|
||||||
$msg = Plaintext::shorten($msgarr["title"], $max_char - 50);
|
$msg = Plaintext::shorten($msgarr["title"], $max_char - 50);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($msgarr['url'] == $b['plink']) && !empty($msgarr['images']) && (count($msgarr['images']) <= 4)) {
|
if (!empty($msgarr['url']) && ($msgarr['url'] == $b['plink']) && !empty($msgarr['images']) && (count($msgarr['images']) <= 4)) {
|
||||||
$url_added = false;
|
$url_added = false;
|
||||||
} elseif (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
|
} elseif (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
|
||||||
$msg .= "\n" . $msgarr["url"];
|
$msg .= "\n" . $msgarr["url"];
|
||||||
|
|
Loading…
Reference in a new issue