Skip to content

Commit

Permalink
Set Content-Type in header
Browse files Browse the repository at this point in the history
  • Loading branch information
dagnir committed Apr 2, 2016
1 parent 7d828a8 commit 0c69442
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/net_traits/lib.rs
Expand Up @@ -336,9 +336,18 @@ impl Metadata {

/// Extract the parts of a Mime that we care about.
pub fn set_content_type(&mut self, content_type: Option<&Mime>) {
match self.headers {
None => self.headers = Some(Headers::new()),
Some(_) => (),
}

match content_type {
None => (),
Some(mime) => {
if let Some(headers) = self.headers.as_mut() {
headers.set(ContentType(mime.clone()));
}

self.content_type = Some(ContentType(mime.clone()));
let &Mime(_, _, ref parameters) = mime;
for &(ref k, ref v) in parameters {
Expand Down

0 comments on commit 0c69442

Please sign in to comment.