diff options
author | redmatrix <git@macgirvin.com> | 2016-05-19 20:48:40 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-19 20:48:40 -0700 |
commit | 853322e7d2734ad459a4e5740f3f1806ed55532e (patch) | |
tree | 3c6d3524d314f477c9fdc06b1ec243fed37ee1b6 /include | |
parent | 9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67 (diff) | |
download | volse-hubzilla-853322e7d2734ad459a4e5740f3f1806ed55532e.tar.gz volse-hubzilla-853322e7d2734ad459a4e5740f3f1806ed55532e.tar.bz2 volse-hubzilla-853322e7d2734ad459a4e5740f3f1806ed55532e.zip |
don't try to deliver empty hashes
Diffstat (limited to 'include')
-rw-r--r-- | include/network.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/network.php b/include/network.php index f80244f8f..a2e655d92 100644 --- a/include/network.php +++ b/include/network.php @@ -1916,6 +1916,9 @@ function do_delivery($deliveries) { $deliver = array(); foreach($deliveries as $d) { + if(! $d) + continue; + $deliver[] = $d; if(count($deliver) >= $deliveries_per_process) { |