From: Claire Date: Thu, 3 Mar 2022 15:13:58 +0000 (+0100) Subject: Allow editing media attachments for scheduled toots (#17690) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=ff43e54a495461eb1a539a1887125190b74754f5;p=mastodon.git Allow editing media attachments for scheduled toots (#17690) Fixes #17676 --- diff --git a/app/controllers/api/v1/media_controller.rb b/app/controllers/api/v1/media_controller.rb index 72094790f..f9c935bf3 100644 --- a/app/controllers/api/v1/media_controller.rb +++ b/app/controllers/api/v1/media_controller.rb @@ -31,7 +31,7 @@ class Api::V1::MediaController < Api::BaseController end def set_media_attachment - @media_attachment = current_account.media_attachments.unattached.find(params[:id]) + @media_attachment = current_account.media_attachments.where(status_id: nil).find(params[:id]) end def check_processing