diff options
author | Friendika <info@friendika.com> | 2011-09-22 04:11:39 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-22 04:11:39 -0700 |
commit | d6b446d63ffe589429394b5937b67ec666bbe219 (patch) | |
tree | 3dfe4e641324b68de0bc93729717aa7afe428562 /include/queue.php | |
parent | a6edf2f71cdb8640ad9f9bee3f237684bd8530db (diff) | |
download | volse-hubzilla-d6b446d63ffe589429394b5937b67ec666bbe219.tar.gz volse-hubzilla-d6b446d63ffe589429394b5937b67ec666bbe219.tar.bz2 volse-hubzilla-d6b446d63ffe589429394b5937b67ec666bbe219.zip |
starting the big delivery shakeup
Diffstat (limited to 'include/queue.php')
-rw-r--r-- | include/queue.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/queue.php b/include/queue.php index 5119a65d8..d312b50f5 100644 --- a/include/queue.php +++ b/include/queue.php @@ -123,6 +123,7 @@ function queue_run($argv, $argc){ } $data = $qi[0]['content']; + $public = $qi[0]['batch']; $contact = $c[0]; $owner = $u[0]; @@ -155,7 +156,7 @@ function queue_run($argv, $argc){ case NETWORK_DIASPORA: if($contact['notify']) { logger('queue: diaspora_delivery: item ' . $q_item['id'] . ' for ' . $contact['name']); - $deliver_status = diaspora_transmit($owner,$contact,$data); + $deliver_status = diaspora_transmit($owner,$contact,$data,$public); if($deliver_status == (-1)) update_queue_time($q_item['id']); |