diff options
author | friendica <info@friendica.com> | 2012-12-31 21:33:11 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-31 21:33:11 -0800 |
commit | f2a4ea7254ba36329f84d0ffb07d3012a8526376 (patch) | |
tree | c0eb628f8de75f77b55c3a274dd314df0629c277 /mod | |
parent | 8d32477bff7980a75a8d45debe3dc73c1904121d (diff) | |
download | volse-hubzilla-f2a4ea7254ba36329f84d0ffb07d3012a8526376.tar.gz volse-hubzilla-f2a4ea7254ba36329f84d0ffb07d3012a8526376.tar.bz2 volse-hubzilla-f2a4ea7254ba36329f84d0ffb07d3012a8526376.zip |
add individual message delivery reporting
Diffstat (limited to 'mod')
-rw-r--r-- | mod/post.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/post.php b/mod/post.php index 5abf7ac0f..53180e1c1 100644 --- a/mod/post.php +++ b/mod/post.php @@ -151,13 +151,13 @@ function post_post(&$a) { if($msgtype === 'notify') { $async = get_config('system','queued_fetch'); - if($async) { // add to receive queue // qreceive_add($data); } else { $x = zot_fetch($data); + $ret['delivery_report'] = $x; } $ret['result'] = true; |