Browse Source

Make ActivityPub::TagManager#local_uri? recognize local URIs with ports (#4628)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
4edf9d849f
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      app/lib/activitypub/tag_manager.rb

+ 4
- 1
app/lib/activitypub/tag_manager.rb View File

@ -70,7 +70,10 @@ class ActivityPub::TagManager
end
def local_uri?(uri)
host = Addressable::URI.parse(uri).normalized_host
uri = Addressable::URI.parse(uri)
host = uri.normalized_host
host = "#{host}:#{uri.port}" if uri.port
!host.nil? && (::TagManager.instance.local_domain?(host) || ::TagManager.instance.web_domain?(host))
end

Loading…
Cancel
Save