diff options
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zot.php b/include/zot.php index f7c9bea4c..6dabd76a6 100644 --- a/include/zot.php +++ b/include/zot.php @@ -947,7 +947,7 @@ function public_recips($msg) { $x = array(); $r = array_merge($r,$x); - + logger('public_recips: ' . print_r($r,true), LOGGER_DATA); return $r; } @@ -1106,7 +1106,7 @@ function process_delivery($sender,$arr,$deliveries,$relay) { $arr['aid'] = $channel['channel_account_id']; $arr['uid'] = $channel['channel_id']; $item_id = item_store($arr); - $result[] = array($d['hash'],'posted'); + $result[] = array($d['hash'],(($item_id) ? 'posted' : 'storage failed')); } if($relay && $item_id) { |