From cb44f7e36082e319cd204c8c7b83d0375ba6c24c Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 10 Oct 2024 10:03:32 +0000 Subject: =?UTF-8?q?dismiss=20add/remove=20collection=20activities=20until?= =?UTF-8?q?=20we=20support=20them=C3=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 16603ca85468162e117e71db53654de0d25611c8) Co-authored-by: Mario --- Zotlabs/Lib/Libzot.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Zotlabs') 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); } -- cgit v1.2.3