diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-22 04:17:12 +0200 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-21 01:17:02 -0600 |
commit | 4692c6033fe23c375651e55837550cfb33e49895 (patch) | |
tree | 7218e8ea7aca65ecd1916abcec36712f5a822c07 /app/controllers/api | |
parent | 808ec5f4bafc5916e29733df8d7854f5aa493c90 (diff) |
port tootsuite#11638 to monsterfork: Fix remote and staff-removed statuses leaving media behind for a day
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/controllers/api')
-rw-r--r-- | app/controllers/api/v1/statuses_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb index 32f496f03..41fec1ad5 100644 --- a/app/controllers/api/v1/statuses_controller.rb +++ b/app/controllers/api/v1/statuses_controller.rb @@ -71,7 +71,7 @@ class Api::V1::StatusesController < Api::BaseController @status = Status.where(account_id: current_user.account).find(params[:id]) authorize @status, :destroy? - RemovalWorker.perform_async(@status.id) + RemovalWorker.perform_async(@status.id, redraft: true) render json: @status, serializer: REST::StatusSerializer, source_requested: true, monsterfork_api: monsterfork_api end |