forked from treehouse/mastodon
Fix TagManager#local_url? erroring out on invalid URL (#18580)
parent
14d7cf39f4
commit
28212bd2be
|
@ -24,8 +24,11 @@ class TagManager
|
|||
|
||||
def local_url?(url)
|
||||
uri = Addressable::URI.parse(url).normalize
|
||||
return false unless uri.host
|
||||
domain = uri.host + (uri.port ? ":#{uri.port}" : '')
|
||||
|
||||
TagManager.instance.web_domain?(domain)
|
||||
rescue Addressable::URI::InvalidURIError
|
||||
false
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue