diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-03 13:47:20 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-03 13:47:20 -0500 |
commit | b644f1c5050c96fd95b573cac1f406e6d85446c9 (patch) | |
tree | 005c23d9688b5cc3323f6dda060e1d5f1724ba8e /app/workers | |
parent | cd52f7500603ab82f18d651161e8ab7ca3565e35 (diff) |
respect 'don't @ me' requests
Diffstat (limited to 'app/workers')
-rw-r--r-- | app/workers/post_status_worker.rb | 1 |
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] |