mirror of
https://github.com/friendica/friendica
synced 2024-11-20 12:23:41 +00:00
Remote-self: It does only make sense to check for duplicates from friendica
This commit is contained in:
parent
59517f6e58
commit
17f87ef9b2
1 changed files with 1 additions and 1 deletions
|
@ -2616,7 +2616,7 @@ function item_is_remote_self($contact, &$datarray) {
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Prevent the forwarding of posts that are forwarded
|
// Prevent the forwarding of posts that are forwarded
|
||||||
if (in_array($datarray["extid"], array(NETWORK_DFRN, NETWORK_DIASPORA)))
|
if ($datarray["extid"] == NETWORK_DFRN)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Prevent to forward already forwarded posts
|
// Prevent to forward already forwarded posts
|
||||||
|
|
Loading…
Reference in a new issue