1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 10:27:42 +02:00

Enable compression support for NamedFile

This commit is contained in:
Nikolay Kim
2018-03-05 13:31:30 -08:00
parent b282ec106e
commit c8844425ad
3 changed files with 3 additions and 2 deletions

View File

@ -85,7 +85,6 @@ impl Responder for NamedFile {
fn respond_to(mut self, _: HttpRequest) -> Result<HttpResponse, io::Error> {
let mut resp = HttpOk.build();
resp.content_encoding(ContentEncoding::Identity);
if let Some(ext) = self.path().extension() {
let mime = get_mime_type(&ext.to_string_lossy());
resp.content_type(format!("{}", mime).as_str());