diff options
author | Richard Schneeman <richard.schneeman+no-recruiters@gmail.com> | 2018-08-04 19:05:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-04 19:05:02 -0500 |
commit | a2b9768792a81e474a8b70d3950cd14ffd491207 (patch) | |
tree | 417bc52e2b55a2999adf7274418d0da60daeb71b /activerecord/lib | |
parent | 3bcdd09ed47778b928d6d51e621e33d75682827d (diff) | |
parent | dc16cdd89a93817203e7c8a49af174fde81402e0 (diff) | |
download | rails-a2b9768792a81e474a8b70d3950cd14ffd491207.tar.gz rails-a2b9768792a81e474a8b70d3950cd14ffd491207.tar.bz2 rails-a2b9768792a81e474a8b70d3950cd14ffd491207.zip |
Merge pull request #33454 from azbshiri/extend-affects-nested-attributes
Call build when extend with nested attributes defined
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/nested_attributes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/nested_attributes.rb b/activerecord/lib/active_record/nested_attributes.rb index fa20bce3a9..50767ee93f 100644 --- a/activerecord/lib/active_record/nested_attributes.rb +++ b/activerecord/lib/active_record/nested_attributes.rb @@ -501,7 +501,7 @@ module ActiveRecord if attributes["id"].blank? unless reject_new_record?(association_name, attributes) - association.build(attributes.except(*UNASSIGNABLE_KEYS)) + association.reader.build(attributes.except(*UNASSIGNABLE_KEYS)) end elsif existing_record = existing_records.detect { |record| record.id.to_s == attributes["id"].to_s } unless call_reject_if(association_name, attributes) |