mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Set Content-Type in header
This commit is contained in:
parent
7d828a8193
commit
0c69442a37
1 changed files with 9 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue