fixed submit content type

This commit is contained in:
Leonard Lorenz 2020-10-23 12:06:19 +02:00
parent e56e43651c
commit c196a882d5

View file

@ -36,7 +36,10 @@ async fn blog() -> impl Responder {
#[get("/blog/submit")] #[get("/blog/submit")]
async fn blog_submit() -> impl Responder { async fn blog_submit() -> impl Responder {
let root_path = config::get_from_env("ROOT_PATH", true); let root_path = config::get_from_env("ROOT_PATH", true);
HttpResponse::Ok().set_header("SameSite", "secure").body( HttpResponse::Ok()
.content_type("text/html")
.set_header("SameSite", "secure")
.body(
std::fs::read_to_string(root_path + "/html/submit.html") std::fs::read_to_string(root_path + "/html/submit.html")
.unwrap_or_else(|e| panic!("Error, couldn't load submit html file.\n{}", e)), .unwrap_or_else(|e| panic!("Error, couldn't load submit html file.\n{}", e)),
) )