From aa7da0471f7fcf2adbbc26c37a25914d8493928d Mon Sep 17 00:00:00 2001 From: George Claghorn Date: Fri, 17 May 2019 16:42:21 -0400 Subject: Deduplicate ActionText::RichText embeds Fix that an ActiveRecord::RecordNotUnique error would be raised when saving rich-text content with the same file attached multiple times. --- actiontext/app/models/action_text/rich_text.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actiontext/app') diff --git a/actiontext/app/models/action_text/rich_text.rb b/actiontext/app/models/action_text/rich_text.rb index 19fa3e030e..1a3ffdfa27 100644 --- a/actiontext/app/models/action_text/rich_text.rb +++ b/actiontext/app/models/action_text/rich_text.rb @@ -15,7 +15,7 @@ module ActionText has_many_attached :embeds before_save do - self.embeds = body.attachables.grep(ActiveStorage::Blob) if body.present? + self.embeds = body.attachables.grep(ActiveStorage::Blob).uniq if body.present? end def to_plain_text -- cgit v1.2.3