mirror of
https://github.com/internetee/registry.git
synced 2025-07-23 19:20:37 +02:00
Fix some CC issues
This commit is contained in:
parent
f25b7a3b7f
commit
5a951dd958
1 changed files with 1 additions and 1 deletions
|
@ -477,7 +477,7 @@ class Epp::Domain < Domain
|
||||||
|
|
||||||
same_registrant_as_current = true
|
same_registrant_as_current = true
|
||||||
# registrant block may not be present, so we need this to rule out false positives
|
# registrant block may not be present, so we need this to rule out false positives
|
||||||
unless frame.css('registrant').text.blank?
|
if frame.css('registrant').text.present?
|
||||||
same_registrant_as_current = (registrant.code == frame.css('registrant').text)
|
same_registrant_as_current = (registrant.code == frame.css('registrant').text)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue