Fix crash when encountering invalid URL (#26814)
This commit is contained in:
parent
3ab722a79c
commit
57acad0e9f
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class TagManager
|
|||
domain = uri.host + (uri.port ? ":#{uri.port}" : '')
|
||||
|
||||
TagManager.instance.web_domain?(domain)
|
||||
rescue Addressable::URI::InvalidURIError
|
||||
rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
|
||||
false
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue