diff --git a/src/Entity/Actor.php b/src/Entity/Actor.php index 0e42169713..1b7c0e4a56 100644 --- a/src/Entity/Actor.php +++ b/src/Entity/Actor.php @@ -370,6 +370,7 @@ class Actor extends Entity */ public function setSelfTags(array $tags, ?array $existing = null): self { + $tags = array_unique($tags); if (\is_null($existing)) { [$_, $existing] = $this->getSelfTags(); }