mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-21 12:05:07 +01:00
Fix remote convertible media attachments not being saved (#13032)
Because the file name was set after loading the file, Paperclip was flagging the differing file extension as content type spoofing Fix #12938
This commit is contained in:
parent
c253f5c57e
commit
ff07e80533
@ -36,8 +36,8 @@ module Remotable
|
||||
|
||||
basename = SecureRandom.hex(8)
|
||||
|
||||
send("#{attachment_name}=", StringIO.new(response.body_with_limit(limit)))
|
||||
send("#{attachment_name}_file_name=", basename + extname)
|
||||
send("#{attachment_name}=", StringIO.new(response.body_with_limit(limit)))
|
||||
|
||||
self[attribute_name] = url if has_attribute?(attribute_name)
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user