From 17e600768583cd4991452f5609dd120658aa641b Mon Sep 17 00:00:00 2001 From: Bob Date: Thu, 3 Mar 2016 17:15:29 +0000 Subject: [PATCH] send correct url to devtool on request Send url that was not modified by the hosts file to the dev tools --- components/net/http_loader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/net/http_loader.rs b/components/net/http_loader.rs index 5b66c877579..c4c546000c6 100644 --- a/components/net/http_loader.rs +++ b/components/net/http_loader.rs @@ -632,7 +632,7 @@ pub fn obtain_response(request_factory: &HttpRequestFactory, if let Some(pipeline_id) = *pipeline_id { send_request_to_devtools( devtools_chan.clone(), request_id.clone().into(), - connection_url.clone(), method.clone(), request_headers.clone(), + url.clone(), method.clone(), request_headers.clone(), cloned_data, pipeline_id, time::now() ); }