diff options
author | Mario <mario@mariovavti.com> | 2021-01-16 09:17:45 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-16 10:18:29 +0100 |
commit | d3f81188741759703271c47d3df1e75f0a06b59a (patch) | |
tree | ad4edf38a4f80b8966297949f075030b76c8216d | |
parent | cb3131a1667b6abdee52ce8605e476773f27c688 (diff) | |
download | volse-hubzilla-d3f81188741759703271c47d3df1e75f0a06b59a.tar.gz volse-hubzilla-d3f81188741759703271c47d3df1e75f0a06b59a.tar.bz2 volse-hubzilla-d3f81188741759703271c47d3df1e75f0a06b59a.zip |
wrong logic
(cherry picked from commit 0d544e2294149efe5f442fa1191c02f241b85b6a)
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 2661f76a7..322e44471 100755 --- a/include/items.php +++ b/include/items.php @@ -130,7 +130,7 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { case 'sit': case 'any': case 'con': - if(in_array($rr['xchan_network'], ['zot6', 'zot'])) + if(!in_array($rr['xchan_network'], ['zot6', 'zot'])) break; case 'pub': case '': |