With the following Kemal app, if I go to `/reviews/` I get page not found. ```crystal require "kemal" get "/*" do |env| "reviews" end get "/resources/js/*" do |env| "some js" end get "/robots.txt" do |env| "robots" end Kemal.run ``` However if I remove either of the two routes begining with "r" the wildcard matches and I get back reviews, eg this works ```crystal require "kemal" get "/*" do |env| "reviews" end get "/robots.txt" do |env| "robots" end Kemal.run ``` I'm reporting this here as this looks like a radix issue, @sdogruyol what do you think?