Prevent the warning of an Undefined array key "object_object_type"

This commit is contained in:
Michael 2022-04-03 07:45:15 +00:00
parent 1db3143dc5
commit 39a1745361

View file

@ -733,7 +733,7 @@ class Receiver
in_array($object_data['object_object_type'], array_merge(['as:Tombstone'], self::CONTENT_TYPES))) {
ActivityPub\Processor::undoActivity($object_data);
} elseif (in_array($object_data['object_type'], array_merge(self::ACTIVITY_TYPES, ['as:Announce', 'as:Create', ''])) &&
($object_data['object_object_type'] == '')) {
empty($object_data['object_object_type'])) {
// We cannot detect the target object. So we can ignore it.
} elseif (in_array($object_data['object_type'], ['as:Create']) &&
in_array($object_data['object_object_type'], ['pt:CacheFile'])) {