aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/associations/association_proxy.rb19
1 files changed, 9 insertions, 10 deletions
diff --git a/activerecord/lib/active_record/associations/association_proxy.rb b/activerecord/lib/active_record/associations/association_proxy.rb
index a94daccd34..c093e40ca0 100644
--- a/activerecord/lib/active_record/associations/association_proxy.rb
+++ b/activerecord/lib/active_record/associations/association_proxy.rb
@@ -119,21 +119,20 @@ module ActiveRecord
private
def method_missing(method, *args, &block)
- load_target
- @target.send(method, *args, &block)
+ if load_target
+ @target.send(method, *args, &block)
+ end
end
def load_target
- if !@owner.new_record? || foreign_key_present
- begin
- @target = find_target unless loaded?
- rescue ActiveRecord::RecordNotFound
- reset
- end
+ if !loaded? and (!@owner.new_record? || foreign_key_present)
+ @target = find_target
end
- loaded
- target
+ @loaded = true
+ @target
+ rescue ActiveRecord::RecordNotFound
+ reset
end
# Can be overwritten by associations that might have the foreign key available for an association without