module Roda::RodaPlugins::UnescapePath::RequestMethods

def matched_path

of the remaining 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