Prevent the warning of an Undefined array key "object_object_type"

pull/11385/head
Michael 2022-04-03 07:45:15 +00:00
rodzic 1db3143dc5
commit 39a1745361
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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'])) {