5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-15 17:31:43 +00:00

fix: usar la codificación correcta
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

los archivos con tildes fallaban
This commit is contained in:
f 2023-09-29 10:10:18 -03:00
parent 997114a896
commit cb2c1b0e7d
No known key found for this signature in database

View file

@ -108,11 +108,14 @@ class Site
end end
# Obtiene el idioma y la ruta del post a partir de la ubicación en # Obtiene el idioma y la ruta del post a partir de la ubicación en
# el disco # el disco.
#
# Las rutas vienen en ASCII-9BIT desde Rugged, pero en realidad
# son UTF-8
# #
# @return [Array<String>] # @return [Array<String>]
def locale_and_path_from(path) def locale_and_path_from(path)
locale, path = path.split(File::SEPARATOR, 2) locale, path = path.force_encoding('utf-8').split(File::SEPARATOR, 2)
[ [
locale.sub(LOCALE_FROM_PATH, ''), locale.sub(LOCALE_FROM_PATH, ''),