class HTTParty::Request
def uri
def uri new_uri = path.relative? ? URI.parse("#{options[:base_uri]}#{path}") : path # avoid double query string on redirects [#12] unless @redirect new_uri.query = query_string(new_uri) end new_uri end
def uri new_uri = path.relative? ? URI.parse("#{options[:base_uri]}#{path}") : path # avoid double query string on redirects [#12] unless @redirect new_uri.query = query_string(new_uri) end new_uri end