aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-02-19 14:13:44 -0800
committerzotlabs <mike@macgirvin.com>2018-02-19 14:13:44 -0800
commitf0d68a1a250c6bd8bf5bdcce6334d5dffcba50cd (patch)
tree9916325a8506b490cdde2cab243618fe7f9e9fe6
parent04185b05ab141cdb8b96f5fa9e4106b4a2cde732 (diff)
downloadvolse-hubzilla-f0d68a1a250c6bd8bf5bdcce6334d5dffcba50cd.tar.gz
volse-hubzilla-f0d68a1a250c6bd8bf5bdcce6334d5dffcba50cd.tar.bz2
volse-hubzilla-f0d68a1a250c6bd8bf5bdcce6334d5dffcba50cd.zip
fix the fix for precision
-rw-r--r--Zotlabs/Daemon/Notifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php
index 47db32206..b7f2a384d 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' && (! $encoded_item['allow_cid'])) ? 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);
}