diff options
author | Mario <mario@mariovavti.com> | 2023-03-30 12:08:43 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-03-30 12:08:43 +0000 |
commit | ba71c53bc6565849ec5ad7af759173e92a498858 (patch) | |
tree | 351a89c4370ac5c264f7afc6aeffe917a8c18a86 /include | |
parent | b3cfeb573a47058f7c2a119829875a5286a078ad (diff) | |
download | volse-hubzilla-ba71c53bc6565849ec5ad7af759173e92a498858.tar.gz volse-hubzilla-ba71c53bc6565849ec5ad7af759173e92a498858.tar.bz2 volse-hubzilla-ba71c53bc6565849ec5ad7af759173e92a498858.zip |
ignore deliveries by our own channel which do not origin from the local hub. instead rely on the sync delivery.
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 3a2b5efb2..a9930470c 100644 --- a/include/items.php +++ b/include/items.php @@ -202,7 +202,7 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { // add ourself just in case we have nomadic clones that need to get a copy. if (!in_array($item['author_xchan'], $recipients)) { - $recipients[] = $item['author_xchan']; + // $recipients[] = $item['author_xchan']; } if($item['owner_xchan'] !== $item['author_xchan'] && !in_array($item['owner_xchan'], $recipients)) { |