Skip to content
Snippets Groups Projects
Verified Commit c401b00c authored by Haelwenn's avatar Haelwenn
Browse files

ObjectValidators.Types.ObjectID: Fix when URI.parse returns %URL{host: ""}

parent 90cbf552
No related branches found
No related tags found
No related merge requests found
......@@ -6,14 +6,10 @@ def type, do: :string
def cast(object) when is_binary(object) do
# Host has to be present and scheme has to be an http scheme (for now)
case URI.parse(object) do
%URI{host: nil} ->
:error
%URI{scheme: scheme} when scheme in ["https", "http"] ->
{:ok, object}
_ ->
:error
%URI{host: nil} -> :error
%URI{host: ""} -> :error
%URI{scheme: scheme} when scheme in ["https", "http"] -> {:ok, object}
_ -> :error
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment