diff options
author | Mario <mario@mariovavti.com> | 2024-10-10 10:03:32 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-10 10:03:32 +0000 |
commit | cb44f7e36082e319cd204c8c7b83d0375ba6c24c (patch) | |
tree | f0939f38863d2258238a0a946d04c21b117f2908 /Zotlabs | |
parent | 8f74ee67e3b55ac53997b3cc8aec22336b142cbc (diff) | |
download | volse-hubzilla-cb44f7e36082e319cd204c8c7b83d0375ba6c24c.tar.gz volse-hubzilla-cb44f7e36082e319cd204c8c7b83d0375ba6c24c.tar.bz2 volse-hubzilla-cb44f7e36082e319cd204c8c7b83d0375ba6c24c.zip |
dismiss add/remove collection activities until we support themÃ
(cherry picked from commit 16603ca85468162e117e71db53654de0d25611c8)
Co-authored-by: Mario <mario@mariovavti.com>
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index bc944c97c..a3431f420 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1148,6 +1148,18 @@ class Libzot { logger('Activity rejected: ' . print_r($data, true)); return; } + + if (in_array($AS->type, ['Add', 'Remove']) + && is_array($AS->obj) + && array_key_exists('object', $AS->obj) + && array_key_exists('actor', $AS->obj) + && !empty($AS->tgt)) { + + logger('unsupported collection operation', LOGGER_DEBUG); + return; + + } + if (is_array($AS->obj)) { $item = Activity::decode_note($AS); if (!$item) { @@ -1158,6 +1170,7 @@ class Libzot { else { $item = []; } + logger($AS->debug(), LOGGER_DATA); } |