diff options
Diffstat (limited to 'components/net/fetch/methods.rs')
-rw-r--r-- | components/net/fetch/methods.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/net/fetch/methods.rs b/components/net/fetch/methods.rs index 15aa3d28c00..e38d434b277 100644 --- a/components/net/fetch/methods.rs +++ b/components/net/fetch/methods.rs @@ -19,6 +19,7 @@ use hyper::header::{IfNoneMatch, Pragma, Location, QualityItem, Referer as Refer use hyper::method::Method; use hyper::mime::{Mime, SubLevel, TopLevel}; use hyper::status::StatusCode; +use hyper_serde::Serde; use mime_guess::guess_mime_type; use msg::constellation_msg::ReferrerPolicy; use net_traits::FetchTaskTarget; @@ -996,7 +997,8 @@ fn http_network_fetch(request: Rc<Request>, if let Some(pipeline_id) = pipeline_id { send_response_to_devtools( &sender, request_id.into(), - meta_headers, meta_status, + meta_headers.map(Serde::into_inner), + meta_status.map(Serde::into_inner), pipeline_id); } } |