Fix language dropdown sometimes not appearing in web UI (#19246)
When user has no locale preference saved (such as never changing it from the default), the preferred posting language is nil, and the dropdown is not visible
This commit is contained in:
parent
55a2e9b5be
commit
0d0f3c15d3
@ -282,7 +282,7 @@ class User < ApplicationRecord
|
||||
end
|
||||
|
||||
def preferred_posting_language
|
||||
valid_locale_cascade(settings.default_language, locale)
|
||||
valid_locale_cascade(settings.default_language, locale, I18n.locale)
|
||||
end
|
||||
|
||||
def setting_default_privacy
|
||||
|
Loading…
Reference in New Issue
Block a user