Fix for #67, Radix tree needs path style string

This commit is contained in:
Fatih Kadir Akın 2016-01-25 22:22:56 +02:00
parent c7f9de562b
commit afdb6fb793
1 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ class Kemal::Handler < HTTP::Handler
def process_request(context)
url = context.request.path.not_nil!
Kemal::Route.check_for_method_override!(context.request)
lookup = @tree.find radix_path(context.request.override_method, context.request.path)
lookup = @tree.find radix_path(context.request.override_method as String, context.request.path)
if lookup.found?
route = lookup.payload as Route
if route.match?(context.request)
@ -46,8 +46,8 @@ class Kemal::Handler < HTTP::Handler
return render_404(context)
end
private def radix_path(method, path)
"#{method} #{path}"
private def radix_path(method : String, path)
"/#{method.downcase}#{path}"
end
private def add_to_radix_tree(method, path, route)