about summary refs log tree commit diff
path: root/app/models/concerns/remotable.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-02-06 22:48:26 +0100
committerGitHub <noreply@github.com>2020-02-06 22:48:26 +0100
commit96ec90b986c8a2783135f123c10062725d274733 (patch)
tree1cbb8b756a2e4d0770c19b834ede0326f99a3dcc /app/models/concerns/remotable.rb
parentccaefd139d33f2f0bf4d097131bcf91960bee956 (diff)
parentfe9a124f5a9f3a7cb6cfba141245cccb88c7dfbe (diff)
Merge pull request #1278 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/models/concerns/remotable.rb')
-rw-r--r--app/models/concerns/remotable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/concerns/remotable.rb b/app/models/concerns/remotable.rb
index b7a476c87..c728a460e 100644
--- a/app/models/concerns/remotable.rb
+++ b/app/models/concerns/remotable.rb
@@ -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