From c137a484af9227f7ea56eb824957e72dbd892d9f Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Thu, 9 Dec 2021 16:34:07 +0000 Subject: [PATCH] [ENTITY][ActorTag] Fix url in actor tag --- src/Entity/ActorTag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }