about summary refs log tree commit diff
path: root/app/workers/post_status_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/post_status_worker.rb')
-rw-r--r--app/workers/post_status_worker.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/workers/post_status_worker.rb b/app/workers/post_status_worker.rb
index 7b44c9a54..78e824964 100644
--- a/app/workers/post_status_worker.rb
+++ b/app/workers/post_status_worker.rb
@@ -9,6 +9,8 @@ class PostStatusWorker
     status = Status.find(status_id)
     return false if status.destroyed?
 
+    RemoveFromLocalTimelinesService.new.call(status)
+
     status.visibility = options[:visibility] if options[:visibility]
     status.local_only = options[:local_only] if options[:local_only]
     status.reject_replies = options[:reject_replies] if options[:reject_replies]