aboutsummaryrefslogtreecommitdiff
path: root/app/workers/unmerge_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/unmerge_worker.rb')
-rw-r--r--app/workers/unmerge_worker.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/workers/unmerge_worker.rb b/app/workers/unmerge_worker.rb
index ea6aacebf..1a23faae5 100644
--- a/app/workers/unmerge_worker.rb
+++ b/app/workers/unmerge_worker.rb
@@ -6,6 +6,8 @@ class UnmergeWorker
sidekiq_options queue: 'pull'
def perform(from_account_id, into_account_id)
- FeedManager.instance.unmerge_from_timeline(Account.find(from_account_id), Account.find(into_account_id))
+ FeedManager.instance.unmerge_from_home(Account.find(from_account_id), Account.find(into_account_id))
+ rescue ActiveRecord::RecordNotFound
+ true
end
end