Browse Source

Fix whitelist federation for subdomains (#12435)

master
noiob 4 years ago
committed by Eugen Rochko
parent
commit
5bc4edd078
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/helpers/domain_control_helper.rb

+ 1
- 1
app/helpers/domain_control_helper.rb View File

@ -6,7 +6,7 @@ module DomainControlHelper
domain = begin
if uri_or_domain.include?('://')
Addressable::URI.parse(uri_or_domain).domain
Addressable::URI.parse(uri_or_domain).host
else
uri_or_domain
end

Loading…
Cancel
Save