Skip to content

Commit

Permalink
chore: remove append of :persona
Browse files Browse the repository at this point in the history
Ref: #26158
  • Loading branch information
erickgonzalez committed Sep 22, 2023
1 parent f70478e commit d3bf8dd
Showing 1 changed file with 2 additions and 6 deletions.
Expand Up @@ -1509,12 +1509,8 @@ public void setTags() throws DotDataException {
if (contentletTagsBuilder.length() > 0) {
contentletTagsBuilder.append(",");
}
if (relatedTag.isPersona()) {
contentletTagsBuilder.append(relatedTag.getTagName())
.append(":persona");
} else {
contentletTagsBuilder.append(relatedTag.getTagName());
}

contentletTagsBuilder.append(relatedTag.getTagName());

contentletTagsMap.put(fieldVarName, contentletTagsBuilder);
} else {
Expand Down

0 comments on commit d3bf8dd

Please sign in to comment.