module Roda::RodaPlugins::UnescapePath::RequestMethods
def _remaining_path(env)
def _remaining_path(env) Rack::Utils.unescape(super) end
def matched_path
Make sure the matched path calculation handles the unescaping
def matched_path e = @env Rack::Utils.unescape(e["SCRIPT_NAME"] + e["PATH_INFO"]).chomp(@remaining_path) end