From 5a23bac1a59e5429bc51a78a467276f7beed2a29 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 5 Dec 2015 22:55:31 +0200 Subject: [PATCH] fix syntax error --- 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 3fee7dd36..54f289266 100644 --- a/app/models/contact.rb +++ b/app/models/contact.rb @@ -472,7 +472,7 @@ class Contact < ActiveRecord::Base end def update_related_whois_records - related_domain_descriptions.each do |x, y| WhoisRecord.find_by(name: x).save + related_domain_descriptions.each do |x, y| WhoisRecord.find_by(name: x).save end end end