Closed NoBrainSkull closed 4 months ago
Hello,
This fixes errors returned by validate_directory_url when matching on {:internal, opts}. NimbleOptions expects either {:ok, internal} or {:error, "reason"} but the latter was missing the error tuple.
validate_directory_url
{:internal, opts}
{:ok, internal}
{:error, "reason"}
Encountered error was :
Thank you!
Hello,
This fixes errors returned by
validate_directory_url
when matching on{:internal, opts}
. NimbleOptions expects either{:ok, internal}
or{:error, "reason"}
but the latter was missing the error tuple.Encountered error was :