diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-19 14:14:45 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-19 14:14:45 -0800 |
commit | 331fe92b9e5e7ecd1db0d0582278bf7b95789570 (patch) | |
tree | 0a0801c101185c2721ea896dc97ad231ae07b279 | |
parent | f0d68a1a250c6bd8bf5bdcce6334d5dffcba50cd (diff) | |
download | volse-hubzilla-331fe92b9e5e7ecd1db0d0582278bf7b95789570.tar.gz volse-hubzilla-331fe92b9e5e7ecd1db0d0582278bf7b95789570.tar.bz2 volse-hubzilla-331fe92b9e5e7ecd1db0d0582278bf7b95789570.zip |
and fix the typo
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index b7f2a384d..af561c702 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -646,7 +646,7 @@ class Notifier { // with before switching to zot6 as the primary zot6 handler checks for the existence of a message delivery report // to trigger dequeue'ing - $z6 = (($encoded_item && $encoded_item['type'] === 'activity' && (! array_key_exists('allow_cid',$encoded_item)) ? true : false); + $z6 = (($encoded_item && $encoded_item['type'] === 'activity' && (! array_key_exists('allow_cid',$encoded_item))) ? true : false); if($z6) { $packet = zot6_build_packet($channel,'notify',$env, json_encode($encoded_item), (($private) ? $hub['hubloc_sitekey'] : null), $hub['site_crypto'],$hash); } |