diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-22 04:39:36 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-22 04:39:36 -0700 |
commit | 7dd61c05dcf169807aed91d305ea235bcaa9035e (patch) | |
tree | 1447c26f52b1eecc6083b9a2336996d079a772a2 | |
parent | 1c1155513a6206b56e45045f762908767049f86e (diff) | |
download | volse-hubzilla-7dd61c05dcf169807aed91d305ea235bcaa9035e.tar.gz volse-hubzilla-7dd61c05dcf169807aed91d305ea235bcaa9035e.tar.bz2 volse-hubzilla-7dd61c05dcf169807aed91d305ea235bcaa9035e.zip |
allow self delivery until we figure out why clone sync of posted items isn't doing it's thing
-rw-r--r-- | include/zot.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/zot.php b/include/zot.php index adeedd42e..4b4be477f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1583,11 +1583,12 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); - if($d['hash'] === $sender['hash']) { - $DR->update('self delivery ignored'); - $result[] = $DR->get(); - continue; - } +// uncomment this once we find out what's stopping the clone sync of the item from working +// if($d['hash'] === $sender['hash']) { +// $DR->update('self delivery ignored'); +// $result[] = $DR->get(); +// continue; +// } // allow public postings to the sys channel regardless of permissions, but not |