diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-22 10:28:43 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-11-22 10:28:43 +0100 |
commit | ff42233aaeed91f8c14da150c7241d3d0b72841f (patch) | |
tree | d8b6e5807bb722fc92087bc6c52679ad92e8e2b2 /app/models | |
parent | e0e7a09cfed2b311f055522eea45caac0838d87a (diff) | |
parent | f343ed42ff1d288989f3a577362cc672e4cae437 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account/field.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/account/field.rb b/app/models/account/field.rb index ffc8dce80..4db4cac30 100644 --- a/app/models/account/field.rb +++ b/app/models/account/field.rb @@ -46,7 +46,8 @@ class Account::Field < ActiveModelSerializers::Model parsed_url.user.nil? && parsed_url.password.nil? && parsed_url.host.present? && - parsed_url.normalized_host == parsed_url.host + parsed_url.normalized_host == parsed_url.host && + (parsed_url.path.empty? || parsed_url.path == parsed_url.normalized_path) rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError false end |