# File lib/omniauth/strategy.rb, line 135
    def call_through_to_app
      status, headers, body = *call_app!
      @response = Rack::Response.new(body, status, headers)
      
      status == 404 ? nil : @response.finish
    end