Set content-type header for index page

This commit is contained in:
Valentin Brandl 2019-04-17 16:16:50 +02:00
parent c91c6b9793
commit bbb006fcf0
No known key found for this signature in database
GPG Key ID: 62E7C7F2C48DBBF2

View File

@ -176,7 +176,9 @@ fn index() -> HttpResponse {
let (tx, rx_body) = mpsc::unbounded(); let (tx, rx_body) = mpsc::unbounded();
let _ = tx.unbounded_send(Bytes::from(INDEX.as_bytes())); let _ = tx.unbounded_send(Bytes::from(INDEX.as_bytes()));
HttpResponse::Ok().streaming(rx_body.map_err(|_| error::ErrorBadRequest("bad request"))) HttpResponse::Ok()
.content_type("text/html")
.streaming(rx_body.map_err(|_| error::ErrorBadRequest("bad request")))
} }
fn main() -> std::io::Result<()> { fn main() -> std::io::Result<()> {