Skip to content

Commit

Permalink
Fix leftover code, which was causing issue with placeholder sanitization
Browse files Browse the repository at this point in the history
  • Loading branch information
shitzuu committed Aug 15, 2024
1 parent 61735bb commit 2685764
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public String compile(
final String sanitizedValue = stripColorFormatting(evaluatedValue);
processedContent =
processedContent.replace(getResolvableTag(placeholder.key()), sanitizedValue);
processedContent = process(processedContent.replace(placeholder.key(), sanitizedValue));
processedContent = process(processedContent);
}
return processedContent;
}
Expand Down

0 comments on commit 2685764

Please sign in to comment.