summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Rogers <rogers.timothy.john@gmail.com>2024-05-04 21:24:10 -0500
committerGitHub <noreply@github.com>2024-05-05 02:24:10 +0000
commit2f73e486b7e107763e92b47b8659e152f363d988 (patch)
tree0297c23699b14210e81faedee42fa03e2be2e403
parentb7902225d698a107df2cf8b4ca221caad38fa464 (diff)
Switched HTMLEntities to the expanded flavor which supports a larger … (#30173)
-rw-r--r--app/lib/link_details_extractor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/link_details_extractor.rb b/app/lib/link_details_extractor.rb
index bec7d3a4550..07776c36991 100644
--- a/app/lib/link_details_extractor.rb
+++ b/app/lib/link_details_extractor.rb
@@ -282,6 +282,6 @@ class LinkDetailsExtractor
end
def html_entities
- @html_entities ||= HTMLEntities.new
+ @html_entities ||= HTMLEntities.new(:expanded)
end
end