0
0
Fork 0

Fix errors when rendering RSS feeds (#18531)

This commit is contained in:
Eugen Rochko 2022-05-26 23:02:42 +02:00 committed by GitHub
parent 52f4e834f2
commit 0a1992430d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View file

@ -254,4 +254,8 @@ module LanguagesHelper
def valid_locale?(locale)
locale.present? && SUPPORTED_LOCALES.key?(locale.to_sym)
end
def available_locale_or_nil(locale_name)
locale_name.to_sym if locale_name.present? && I18n.available_locales.include?(locale_name.to_sym)
end
end