Additional check for repeated posts

This commit is contained in:
Michael Vogel 2014-10-29 01:31:29 +01:00
parent 3e57954807
commit 338ad1d85f
1 changed files with 4 additions and 0 deletions

View File

@ -2615,6 +2615,10 @@ function item_is_remote_self($contact, &$datarray) {
if (!$contact['remote_self'])
return false;
// Prevent the forwarding of posts that are forwarded
if ($datarray["extid"] == NETWORK_DFRN)
return false;
// Prevent to forward already forwarded posts
if ($datarray["app"] == $a->get_hostname())
return false;