Merge branch 'vpzomtrrfrt/mobilizon-port-support' into 'master'

Check port in compare_urls

See merge request framasoft/mobilizon!651
This commit is contained in:
Thomas Citharel 2020-10-26 10:01:31 +01:00
commit 19b0f4fc91
1 changed files with 2 additions and 1 deletions

View File

@ -273,7 +273,8 @@ defmodule Mobilizon.Federation.ActivityPub.Utils do
compare_uris?(uri_1, uri_2)
end
defp compare_uris?(%URI{} = id_uri, %URI{} = other_uri), do: id_uri.host == other_uri.host
defp compare_uris?(%URI{} = id_uri, %URI{} = other_uri),
do: id_uri.host == other_uri.host && id_uri.port == other_uri.port
@spec origin_check_from_id?(String.t(), String.t()) :: boolean()
def origin_check_from_id?(id, other_id) when is_binary(other_id) do