mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 10:16:22 +00:00
fix: poder indexar desde cero
This commit is contained in:
parent
f28ba40953
commit
5eafbaa5e9
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ class MetadataOrder < MetadataTemplate
|
|||
# El valor según la posición del post en la relación ordenada por
|
||||
# fecha, a fecha más alta, posición más alta
|
||||
def default_value
|
||||
super || (site.indexed_posts(locale: locale).first.order + 1)
|
||||
super || ((site.indexed_posts.where(locale: locale).first&.order || 0) + 1)
|
||||
end
|
||||
|
||||
def save
|
||||
|
|
Loading…
Reference in a new issue