Skip to content

Commit

Permalink
Remove use of .blank? in ES converter
Browse files Browse the repository at this point in the history
  • Loading branch information
jrothrock committed May 11, 2023
1 parent d287a6a commit 7b284e3
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 7b284e3

Please sign in to comment.