mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 10:31:41 +00:00
fix: no producir un error al no haber locales
This commit is contained in:
parent
b51eb6856c
commit
29be4b26b0
1 changed files with 1 additions and 1 deletions
|
@ -44,6 +44,6 @@ class MetadataLocales < MetadataHasAndBelongsToMany
|
|||
def posts
|
||||
other_locales.map do |locale|
|
||||
site.posts(lang: locale).where(layout: post.layout.value)
|
||||
end.reduce(&:concat) || PostRelation.new
|
||||
end.reduce(&:concat) || PostRelation.new(site: site, lang: 'any')
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue