about summary refs log tree commit diff
path: root/app/services/reblog_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/reblog_service.rb')
-rw-r--r--app/services/reblog_service.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/services/reblog_service.rb b/app/services/reblog_service.rb
index 8ade09861..e2062d63c 100644
--- a/app/services/reblog_service.rb
+++ b/app/services/reblog_service.rb
@@ -69,8 +69,7 @@ class ReblogService < BaseService
 
   def curate_status(status)
     return if status.curated || !status.distributable? || (status.reply? && status.in_reply_to_account_id != status.account_id)
-    status.curated = true
-    status.save
+    status.update(curated: true)
     FanOutOnWriteService.new.call(status)
   end
 end