about summary refs log tree commit diff
path: root/app/models/form
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-08-22 04:17:12 +0200
committerGitHub <noreply@github.com>2019-08-22 04:17:12 +0200
commit97192d9a77c0b4b68afe50d6a94d87110a8adbcd (patch)
treeee26296c9549c52f45bc098594a5b67392dc8851 /app/models/form
parente9c3d1ef4603dfee19a59974771cb505ecfc3d29 (diff)
Fix remote and staff-removed statuses leaving media behind for a day (#11638)
The reason for unattaching media instead of removing it is to support
delete & redraft functionality, but remote or staff-removed statuses
will never be redrafted, so the media should be deleted immediately
Diffstat (limited to 'app/models/form')
-rw-r--r--app/models/form/status_batch.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/form/status_batch.rb b/app/models/form/status_batch.rb
index 933dfdaca..831d8b7c5 100644
--- a/app/models/form/status_batch.rb
+++ b/app/models/form/status_batch.rb
@@ -34,7 +34,7 @@ class Form::StatusBatch
 
   def delete_statuses
     Status.where(id: status_ids).reorder(nil).find_each do |status|
-      RemovalWorker.perform_async(status.id)
+      RemovalWorker.perform_async(status.id, redraft: false)
       Tombstone.find_or_create_by(uri: status.uri, account: status.account, by_moderator: true)
       log_action :destroy, status
     end