mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 15:41:42 +00:00
fix: siempre devolver la ruta completa
closes #6984 closes #7053 closes #7807 closes #7998 closes #8262 closes #8690 closes #8887 closes #9363 closes #9376
This commit is contained in:
parent
53b11cba15
commit
5117ffbce3
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class MetadataFile < MetadataTemplate
|
||||||
rescue Errno::ENOENT => e
|
rescue Errno::ENOENT => e
|
||||||
ExceptionNotifier.notify_exception(e, data: { site: site.name, path: value['path'] })
|
ExceptionNotifier.notify_exception(e, data: { site: site.name, path: value['path'] })
|
||||||
|
|
||||||
Pathname.new(value['path'])
|
Pathname.new(File.join(site.path, value['path']))
|
||||||
end
|
end
|
||||||
|
|
||||||
# Obtener la ruta relativa al sitio.
|
# Obtener la ruta relativa al sitio.
|
||||||
|
|
Loading…
Reference in a new issue