queue_follow_unfollows!
end
+ @deferred_error = nil
+
copy_account_notes!
carry_blocks_over!
carry_mutes_over!
+
+ raise @deferred_error unless @deferred_error.nil?
rescue ActiveRecord::RecordNotFound
true
end
@source_account.followers.local.select(:id).find_in_batches do |accounts|
UnfollowFollowWorker.push_bulk(accounts.map(&:id)) { |follower_id| [follower_id, @source_account.id, @target_account.id, bypass_locked] }
+ rescue => e
+ @deferred_error = e
end
end
new_note = AccountNote.find_by(account: note.account, target_account: @target_account)
if new_note.nil?
- AccountNote.create!(account: note.account, target_account: @target_account, comment: [text, note.comment].join('\n'))
+ AccountNote.create!(account: note.account, target_account: @target_account, comment: [text, note.comment].join("\n"))
else
- new_note.update!(comment: [text, note.comment, '\n', new_note.comment].join('\n'))
+ new_note.update!(comment: [text, note.comment, "\n", new_note.comment].join("\n"))
end
+ rescue => e
+ @deferred_error = e
end
end
BlockService.new.call(block.account, @target_account)
add_account_note_if_needed!(block.account, 'move_handler.carry_blocks_over_text')
end
+ rescue => e
+ @deferred_error = e
end
end
@source_account.muted_by_relationships.where(account: Account.local).find_each do |mute|
MuteService.new.call(mute.account, @target_account, notifications: mute.hide_notifications) unless mute.account.muting?(@target_account) || mute.account.following?(@target_account)
add_account_note_if_needed!(mute.account, 'move_handler.carry_mutes_over_text')
+ rescue => e
+ @deferred_error = e
end
end