si los artículos son nuevos no tienen llave para cachearlos
This commit is contained in:
parent
28e927d0af
commit
6b84720401
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,7 @@ class Post
|
||||||
end
|
end
|
||||||
|
|
||||||
def cache_version
|
def cache_version
|
||||||
updated_at.utc.to_s(:usec)
|
(updated_at || modified_at).utc.to_s(:usec)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Agregar el timestamp para saber si cambió, siguiendo el módulo
|
# Agregar el timestamp para saber si cambió, siguiendo el módulo
|
||||||
|
@ -127,6 +127,8 @@ class Post
|
||||||
|
|
||||||
# Fecha de última modificación del archivo
|
# Fecha de última modificación del archivo
|
||||||
def updated_at
|
def updated_at
|
||||||
|
return if new?
|
||||||
|
|
||||||
File.mtime(path.absolute)
|
File.mtime(path.absolute)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue