diff options
author | zotlabs <mike@macgirvin.com> | 2019-01-16 15:28:30 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-01-16 15:28:30 -0800 |
commit | eaa375936fc3c23f1b6629cba56fce2eb116a1c6 (patch) | |
tree | e911e6524a3b1421c184fb4ea832fd87bc92ab98 /Zotlabs/Daemon | |
parent | 7b30fc4b82da0a64e152cdeb82564f8d52b7177e (diff) | |
download | volse-hubzilla-eaa375936fc3c23f1b6629cba56fce2eb116a1c6.tar.gz volse-hubzilla-eaa375936fc3c23f1b6629cba56fce2eb116a1c6.tar.bz2 volse-hubzilla-eaa375936fc3c23f1b6629cba56fce2eb116a1c6.zip |
more z6 compatibility fixes
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Onepoll.php | 2 | ||||
-rw-r--r-- | Zotlabs/Daemon/Poller.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Onepoll.php b/Zotlabs/Daemon/Onepoll.php index 920916828..1d9fd5f72 100644 --- a/Zotlabs/Daemon/Onepoll.php +++ b/Zotlabs/Daemon/Onepoll.php @@ -69,7 +69,7 @@ class Onepoll { return; } - if($contact['xchan_network'] !== 'zot') + if(! in_array($contact['xchan_network'],['zot','zot6'])) return; // update permissions diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index 49151437c..a8cf34ce2 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -110,7 +110,7 @@ class Poller { } - if($contact['xchan_network'] !== 'zot') + if(! in_array($contact['xchan_network'],['zot','zot6'])) continue; if($c == $t) { |