mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 07:31:02 +08:00
FIX: Update Discobot's UserProfile#bio_raw
when default locale changes (#26045)
Why this change? When a site's default locale is changed, Discobot's `UserProfile#bio_raw` is not changed and we have gotten reports about this. What does this change do? This change adds a `DiscourseEvent.on(:site_setting_changed)` callback which watches for changes to the `default_locale` site setting and updates Discobot's `UserProfile#bio_raw` when it changes.
This commit is contained in:

committed by
GitHub

parent
3491642f98
commit
7f7ef60a7b
@ -227,5 +227,17 @@ after_initialize do
|
||||
end
|
||||
end
|
||||
|
||||
self.on(:site_setting_changed) do |name, old_value, new_value|
|
||||
next if name.to_s != "default_locale"
|
||||
next if !SiteSetting.discourse_narrative_bot_enabled
|
||||
|
||||
profile = UserProfile.find_by(user_id: DiscourseNarrativeBot::BOT_USER_ID)
|
||||
|
||||
next if profile.blank?
|
||||
|
||||
new_bio = I18n.with_locale(new_value) { I18n.t("discourse_narrative_bot.bio") }
|
||||
profile.update!(bio_raw: new_bio)
|
||||
end
|
||||
|
||||
PostGuardian.prepend(DiscourseNarrativeBot::PostGuardianExtension)
|
||||
end
|
||||
|
Reference in New Issue
Block a user