From 572bb376c1de1b58bfde6f3b5008b2d08f4d5bbd Mon Sep 17 00:00:00 2001 From: Yannis Vogel Date: Thu, 22 May 2025 20:55:21 +0200 Subject: [PATCH] hotfix article title not being used --- plugins/federator/contentnation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/federator/contentnation.php b/plugins/federator/contentnation.php index de85112..a7a2277 100644 --- a/plugins/federator/contentnation.php +++ b/plugins/federator/contentnation.php @@ -408,7 +408,7 @@ class ContentNation implements Connector $ap['object'] = [ 'type' => 'Article', 'id' => $ourUrl . "/" . $articleOwnerName . "/" . $articleName, - 'name' => $jsonData['object']['name'] ?? null, + 'name' => $jsonData['object']['title'] ?? null, 'published' => $originalPublished, 'summary' => $jsonData['object']['summary'] ?? null, 'content' => $jsonData['object']['content'] ?? null,