about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/services/process_feed_service.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb
index fdf59b41c..1ea79835b 100644
--- a/app/services/process_feed_service.rb
+++ b/app/services/process_feed_service.rb
@@ -153,9 +153,8 @@ class ProcessFeedService < BaseService
 
     status = Status.new(account: account, uri: target_id(xml), text: target_content(xml), url: target_url(xml), created_at: published(xml), updated_at: updated(xml))
     status.thread = find_original_status(xml, thread_id(xml))
-    status.save
 
-    if status.saved? && status.thread.nil? && !thread_href(xml).nil?
+    if status.save && status.thread.nil? && !thread_href(xml).nil?
       ThreadResolveWorker.perform_async(status.id, thread_href(xml))
     end