1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-27 22:38:27 +09:00

Fix encoding error when checking e-mail MX records (#11696)

This commit is contained in:
Eugen Rochko 2019-08-30 01:35:12 +02:00 committed by GitHub
parent 14996496a5
commit bfca58d137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ class EmailMxValidator < ActiveModel::Validator
return true if domain.nil?
domain = TagManager.instance.normalize_domain(domain)
hostnames = []
ips = []
@ -29,6 +30,8 @@ class EmailMxValidator < ActiveModel::Validator
end
ips.empty? || on_blacklist?(hostnames + ips)
rescue Addressable::URI::InvalidURIError
true
end
def on_blacklist?(values)