forked from AkkomaGang/akkoma
Improved recursion through the api route list
This commit is contained in:
parent
6b87dfad5d
commit
1552179792
1 changed files with 3 additions and 5 deletions
|
@ -55,11 +55,9 @@ defp invalid_path?([h | _], _match) when h in [".", "..", ""], do: true
|
||||||
defp invalid_path?([h | t], match), do: String.contains?(h, match) or invalid_path?(t)
|
defp invalid_path?([h | t], match), do: String.contains?(h, match) or invalid_path?(t)
|
||||||
defp invalid_path?([], _match), do: false
|
defp invalid_path?([], _match), do: false
|
||||||
|
|
||||||
defp api_route?(list) when is_list(list) and length(list) > 0 do
|
defp api_route?([h | _]) when h in @api_routes, do: true
|
||||||
List.first(list) in @api_routes
|
defp api_route?([_ | t]), do: api_route?(t)
|
||||||
end
|
defp api_route?([]), do: false
|
||||||
|
|
||||||
defp api_route?(_), do: false
|
|
||||||
|
|
||||||
defp call_static(conn, opts, from) do
|
defp call_static(conn, opts, from) do
|
||||||
opts = Map.put(opts, :from, from)
|
opts = Map.put(opts, :from, from)
|
||||||
|
|
Loading…
Reference in a new issue