Merge pull request #9245 from annando/notice

Fix notice "Undefined index: gravity"
Este commit está contenido en:
Hypolite Petovan 2020-09-20 11:17:07 -04:00 cometido por GitHub
commit 4c3d28488f
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 3 ficheros con 6 adiciones y 1 borrados

Ver fichero

@ -163,7 +163,7 @@ class PageInfo
}
}
$text .= ']' . $data['text'] . '[/attachment]';
$text .= ']' . $data['text'] ?? '' . '[/attachment]';
$hashtags = '';
if (!empty($data['keywords'])) {

Ver fichero

@ -272,6 +272,7 @@ class Processor
$item = self::processContent($activity, $item);
if (empty($item)) {
Logger::info('Message was not processed');
return [];
}

Ver fichero

@ -487,6 +487,10 @@ class Receiver
$object_data['thread-completion'] = true;
$item = ActivityPub\Processor::createItem($object_data);
if (empty($item)) {
return;
}
$item['post-type'] = Item::PT_ANNOUNCEMENT;
ActivityPub\Processor::postItem($object_data, $item);