From 29322ff99a1c15e22b4a6e07ab977bcc08d172a9 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Wed, 27 Nov 2024 11:24:51 +0100 Subject: [PATCH] fix(activity): ensure absolute URL are used Signed-off-by: skjnldsv --- lib/Activity/ProviderParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Activity/ProviderParser.php b/lib/Activity/ProviderParser.php index c5ffa4bee..191ddb386 100644 --- a/lib/Activity/ProviderParser.php +++ b/lib/Activity/ProviderParser.php @@ -286,7 +286,7 @@ protected function generateCircleParameter(Circle $circle): array { 'id' => $circle->getSingleId(), 'name' => $circle->getName(), '_parsed' => $circle->getName(), - 'link' => $circle->getUrl() + 'link' => $this->url->getAbsoluteURL($circle->getUrl()), ]; }