diff --git a/src/Entity/ActorTag.php b/src/Entity/ActorTag.php index df2d5c94aa..0c3041c44f 100644 --- a/src/Entity/ActorTag.php +++ b/src/Entity/ActorTag.php @@ -137,7 +137,7 @@ class ActorTag extends Entity public function getUrl(?Actor $actor = null): string { - $params = ['tag' => $this->getCanonical()]; + $params = ['canon' => $this->getCanonical(), 'tag' => $this->getTag()]; if (!\is_null($actor)) { $params['lang'] = $actor->getTopLanguage()->getLocale(); }