5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 09:40:48 +00:00

normalizar unicode en la string

This commit is contained in:
f 2022-04-28 10:57:28 -03:00
parent bfeb513b6b
commit cadb3ad6a6

View file

@ -39,6 +39,6 @@ class MetadataSlug < MetadataTemplate
return if post.title&.private?
return if post.title&.value&.blank?
post.title&.value&.to_s
post.title&.value&.to_s&.unicode_normalize
end
end