Skip to content

Commit

Permalink
Remove use of .blank? in ES converter (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrothrock committed May 16, 2023
1 parent 37c88b8 commit b548073
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -53,7 +53,7 @@ def domain_name(layer)
rescue
# Do nothing
ensure
domain = DEFAULT_DOMAIN if domain.to_s.blank?
domain = DEFAULT_DOMAIN if (domain.nil? || domain.empty?)
domain
end

Expand Down

0 comments on commit b548073

Please sign in to comment.