diff options
author | Edgars Beigarts <edgars.beigarts@gmail.com> | 2016-12-02 17:09:09 +0200 |
---|---|---|
committer | Edgars Beigarts <edgars.beigarts@gmail.com> | 2016-12-02 17:09:09 +0200 |
commit | adebb207805cb573b2387f478b4a5549badab5e9 (patch) | |
tree | 4ea72a9ddbfaf84e9828522560093c24b3551865 /activerecord/lib | |
parent | 8ce903af862d56b77d60c3809c0442cdac9d6c89 (diff) | |
download | rails-adebb207805cb573b2387f478b4a5549badab5e9.tar.gz rails-adebb207805cb573b2387f478b4a5549badab5e9.tar.bz2 rails-adebb207805cb573b2387f478b4a5549badab5e9.zip |
Reload association scope inside autosaved associations
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/autosave_association.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/autosave_association.rb b/activerecord/lib/active_record/autosave_association.rb index b343332bae..9d0b501862 100644 --- a/activerecord/lib/active_record/autosave_association.rb +++ b/activerecord/lib/active_record/autosave_association.rb @@ -383,6 +383,9 @@ module ActiveRecord if association = association_instance_get(reflection.name) autosave = reflection.options[:autosave] + # reconstruct the scope now that we know the owner's id + association.reset_scope if association.respond_to?(:reset_scope) + if records = associated_records_to_validate_or_save(association, @new_record_before_save, autosave) if autosave records_to_destroy = records.select(&:marked_for_destruction?) @@ -408,9 +411,6 @@ module ActiveRecord raise ActiveRecord::Rollback unless saved end end - - # reconstruct the scope now that we know the owner's id - association.reset_scope if association.respond_to?(:reset_scope) end end |