# File lib/dragonfly/middleware.rb, line 13
    def call(env)
      response = @endpoint.call(env)
      if route_not_found?(response)
        @app.call(env)
      else
        response
      end
    end