aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/active_storage/attached
diff options
context:
space:
mode:
Diffstat (limited to 'activestorage/lib/active_storage/attached')
-rw-r--r--activestorage/lib/active_storage/attached/one.rb15
1 files changed, 10 insertions, 5 deletions
diff --git a/activestorage/lib/active_storage/attached/one.rb b/activestorage/lib/active_storage/attached/one.rb
index e3600dc241..008f5a796b 100644
--- a/activestorage/lib/active_storage/attached/one.rb
+++ b/activestorage/lib/active_storage/attached/one.rb
@@ -64,20 +64,25 @@ module ActiveStorage
private
def replace(attachable)
- unless attachable == blob
- previous_blob = blob
+ blob_was = blob
+ blob = create_blob_from(attachable)
+ unless blob == blob_was
transaction do
detach
- write_attachment build_attachment_from(attachable)
+ write_attachment build_attachment(blob: blob)
end
- previous_blob.purge_later
+ blob_was.purge_later
end
end
def build_attachment_from(attachable)
- ActiveStorage::Attachment.new(record: record, name: name, blob: create_blob_from(attachable))
+ build_attachment blob: create_blob_from(attachable)
+ end
+
+ def build_attachment(blob:)
+ ActiveStorage::Attachment.new(record: record, name: name, blob: blob)
end
def write_attachment(attachment)