mirror of https://github.com/tootsuite/mastodon
Fix when MoveWorker cannot get locale from remote account (#16576)
parent
85c845c001
commit
1ddbefb787
|
@ -41,7 +41,7 @@ class MoveWorker
|
||||||
|
|
||||||
def copy_account_notes!
|
def copy_account_notes!
|
||||||
AccountNote.where(target_account: @source_account).find_each do |note|
|
AccountNote.where(target_account: @source_account).find_each do |note|
|
||||||
text = I18n.with_locale(note.account.user.locale || I18n.default_locale) do
|
text = I18n.with_locale(note.account.user&.locale || I18n.default_locale) do
|
||||||
I18n.t('move_handler.copy_account_note_text', acct: @source_account.acct)
|
I18n.t('move_handler.copy_account_note_text', acct: @source_account.acct)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ class MoveWorker
|
||||||
|
|
||||||
def add_account_note_if_needed!(account, id)
|
def add_account_note_if_needed!(account, id)
|
||||||
unless AccountNote.where(account: account, target_account: @target_account).exists?
|
unless AccountNote.where(account: account, target_account: @target_account).exists?
|
||||||
text = I18n.with_locale(account.user.locale || I18n.default_locale) do
|
text = I18n.with_locale(account.user&.locale || I18n.default_locale) do
|
||||||
I18n.t(id, acct: @source_account.acct)
|
I18n.t(id, acct: @source_account.acct)
|
||||||
end
|
end
|
||||||
AccountNote.create!(account: account, target_account: @target_account, comment: text)
|
AccountNote.create!(account: account, target_account: @target_account, comment: text)
|
||||||
|
|
Loading…
Reference in New Issue