From 467d225c4bbf941500ddff8ab938bfa4686edddd Mon Sep 17 00:00:00 2001 From: BentiGorlich Date: Tue, 10 Dec 2024 16:29:18 +0100 Subject: [PATCH] Remove using the AP id as the URL (#1281) --- src/Factory/ActivityPub/EntryPageFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Factory/ActivityPub/EntryPageFactory.php b/src/Factory/ActivityPub/EntryPageFactory.php index e2f6d42a2..d02c2c43d 100644 --- a/src/Factory/ActivityPub/EntryPageFactory.php +++ b/src/Factory/ActivityPub/EntryPageFactory.php @@ -131,6 +131,6 @@ private function getUrl(Entry $entry): string return $this->imageManager->getUrl($entry->image); } - return $entry->url ?? $this->getActivityPubId($entry); + return $entry->url; } }