Skip to content

Commit

Permalink
fix(activity): ensure absolute URL are used
Browse files Browse the repository at this point in the history
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv authored and backportbot[bot] committed Nov 28, 2024
1 parent cddb5c9 commit 29322ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Activity/ProviderParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
];
}

Expand Down

0 comments on commit 29322ff

Please sign in to comment.