about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-08-03 13:47:20 -0500
committermultiple creatures <dev@multiple-creature.party>2019-08-03 13:47:20 -0500
commitb644f1c5050c96fd95b573cac1f406e6d85446c9 (patch)
tree005c23d9688b5cc3323f6dda060e1d5f1724ba8e /app/workers
parentcd52f7500603ab82f18d651161e8ab7ca3565e35 (diff)
respect 'don't @ me' requests
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/post_status_worker.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/workers/post_status_worker.rb b/app/workers/post_status_worker.rb
index 630d83fae..99f2c2e99 100644
--- a/app/workers/post_status_worker.rb
+++ b/app/workers/post_status_worker.rb
@@ -11,6 +11,7 @@ class PostStatusWorker
 
     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]
     status.save!
 
     process_mentions_service.call(status) unless options[:nomentions]