mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 15:51:41 +00:00
los archivos con tildes fallaban
This commit is contained in:
parent
997114a896
commit
cb2c1b0e7d
1 changed files with 5 additions and 2 deletions
|
@ -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, ''),
|
||||||
|
|
Loading…
Reference in a new issue