Fix about matching acceptable domains.

This commit is contained in:
Philippe Pittoli 2023-06-30 00:01:25 +02:00
parent 81d34862e2
commit 63b32d8932

View File

@ -70,7 +70,7 @@ class DNSManager::Storage
# Verify if the domain is acceptable.
matching_domains = accepted_domains.select { |adomain| domain.ends_with? adomain }
unless matching_domains
unless matching_domains.size > 0
Baguette::Log.warning "trying to add an unacceptable domain: #{domain}"
return Response::UnacceptableDomain.new
end