5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-15 02:21:42 +00:00

tener en cuenta que los archivos pueden estar vacíos

This commit is contained in:
f 2020-08-11 11:54:03 -03:00
parent 82e676e161
commit 17bbee47aa

View file

@ -80,8 +80,10 @@ class MetadataFile < MetadataTemplate
# Obtiene la ruta absoluta del archivo # Obtiene la ruta absoluta del archivo
# #
# @return [String] # @return [String|Nil]
def file def file
return unless value['path']
if value['path'].is_a? ActionDispatch::Http::UploadedFile if value['path'].is_a? ActionDispatch::Http::UploadedFile
value['path'].tempfile.path value['path'].tempfile.path
else else