lib/whois/record/parser/whois.fi.rb in whois-3.2.1 vs lib/whois/record/parser/whois.fi.rb in whois-3.3.0
- old
+ new
@@ -41,11 +41,13 @@
property_supported :status do
if registered?
case node("status", &:downcase)
when "granted"
:registered
+ when "grace period"
+ :registered
else
- Whois.bug!(ParserError, "Unknown status `#{$1}'.")
+ Whois.bug!(ParserError, "Unknown status `#{node("status")}'.")
end
else
:available
end
end