diff options
author | Mario <mario@mariovavti.com> | 2023-07-20 11:46:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-07-20 11:46:40 +0000 |
commit | 5181e575b4eb91de3ec71a125d45c29e65372c76 (patch) | |
tree | 71c2c8f7b6efe2ba9232c04324057cc982c136db /Zotlabs/Module/Chat.php | |
parent | ca994735bee5f479d840da13674b38c40930ba98 (diff) | |
download | volse-hubzilla-5181e575b4eb91de3ec71a125d45c29e65372c76.tar.gz volse-hubzilla-5181e575b4eb91de3ec71a125d45c29e65372c76.tar.bz2 volse-hubzilla-5181e575b4eb91de3ec71a125d45c29e65372c76.zip |
fix accesslist in two cases
Diffstat (limited to 'Zotlabs/Module/Chat.php')
-rw-r--r-- | Zotlabs/Module/Chat.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Chat.php b/Zotlabs/Module/Chat.php index fc74016ab..2d36e022a 100644 --- a/Zotlabs/Module/Chat.php +++ b/Zotlabs/Module/Chat.php @@ -181,7 +181,7 @@ class Chat extends Controller { ); if($x) { - $acl = new AccessList(false); + $acl = new AccessList([]); $acl->set($x[0]); $private = $acl->is_private(); |