Fix notice "Undefined index: gravity in /src/Protocol/ActivityPub/Processor.php on line 556"
This commit is contained in:
parent
990c70807d
commit
5545bafdee
|
@ -514,6 +514,10 @@ class Processor
|
||||||
*/
|
*/
|
||||||
public static function postItem(array $activity, array $item)
|
public static function postItem(array $activity, array $item)
|
||||||
{
|
{
|
||||||
|
if (empty($item)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$stored = false;
|
$stored = false;
|
||||||
|
|
||||||
foreach ($activity['receiver'] as $receiver) {
|
foreach ($activity['receiver'] as $receiver) {
|
||||||
|
|
Loading…
Reference in a new issue