From 1c64188eae7cecd5861ec498acfaf440ba9ed116 Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Tue, 28 Jul 2015 20:31:22 +0300 Subject: [PATCH] Fix typo #2786 --- app/models/contact.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/contact.rb b/app/models/contact.rb index 51a9e5d6c..027eb31cd 100644 --- a/app/models/contact.rb +++ b/app/models/contact.rb @@ -48,7 +48,7 @@ class Contact < ActiveRecord::Base emails << domains.map(&:registrant_email) if domains.present? emails = emails.flatten.uniq emails.each do |e| - ContactMailer.email_updated(e, contact).deliver_now + ContactMailer.email_updated(e, self).deliver_now end end