diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-07 18:38:10 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-07 18:38:10 -0800 |
commit | 3a0db39fa05668831e7661ac6edaabfd09d864e2 (patch) | |
tree | 2a0a7718eafaaeb5564bd95cea7dee8e4bbfa625 /Zotlabs/Daemon | |
parent | 1d8d2c6e5517ec7cbb9aa089993918ff6492f5c3 (diff) | |
download | volse-hubzilla-3a0db39fa05668831e7661ac6edaabfd09d864e2.tar.gz volse-hubzilla-3a0db39fa05668831e7661ac6edaabfd09d864e2.tar.bz2 volse-hubzilla-3a0db39fa05668831e7661ac6edaabfd09d864e2.zip |
more zot6 delivery work
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index b168db5ae..957b859af 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -618,8 +618,8 @@ class Notifier { $packet = zot_build_packet($channel,$packet_type,(($packet_recips) ? $packet_recips : null)); } if($packet_type === 'keychange') { - $packet = zot_build_packet($channel,$packet_type,(($packet_recips) ? $packet_recips : null)); $pmsg = get_pconfig($channel['channel_id'],'system','keychange'); + $packet = zot_build_packet($channel,$packet_type,(($packet_recips) ? $packet_recips : null)); } elseif($packet_type === 'request') { $env = (($hub_env && $hub_env[$hub['hubloc_host'] . $hub['hubloc_sitekey']]) ? $hub_env[$hub['hubloc_host'] . $hub['hubloc_sitekey']] : ''); @@ -640,7 +640,7 @@ class Notifier { } else { $env = (($hub_env && $hub_env[$hub['hubloc_host'] . $hub['hubloc_sitekey']]) ? $hub_env[$hub['hubloc_host'] . $hub['hubloc_sitekey']] : ''); - $packet = zot_build_packet($channel,'notify',$env,(($private) ? $hub['hubloc_sitekey'] : null), $hub['site_crypto'],$hash); + $packet = zot6_build_packet($channel,'notify',$env, json_encode($encoded_item), (($private) ? $hub['hubloc_sitekey'] : null), $hub['site_crypto'],$hash); queue_insert( [ 'hash' => $hash, |