diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/workers/post_status_worker.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/workers/post_status_worker.rb b/app/workers/post_status_worker.rb index 78e824964..7b44c9a54 100644 --- a/app/workers/post_status_worker.rb +++ b/app/workers/post_status_worker.rb @@ -9,8 +9,6 @@ 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] |