fix: responder impl

This commit is contained in:
Strix 2023-10-14 22:39:17 +02:00
parent 02f0270fb1
commit f378e685f9
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
3 changed files with 9 additions and 8 deletions

2
Cargo.lock generated
View file

@ -634,7 +634,7 @@ checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
[[package]] [[package]]
name = "milly" name = "milly"
version = "0.1.0" version = "0.1.2"
dependencies = [ dependencies = [
"actix-web", "actix-web",
] ]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "milly" name = "milly"
version = "0.1.2" version = "0.1.3"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -95,15 +95,16 @@ impl Element {
} }
#[cfg(feature = "actix")] #[cfg(feature = "actix")]
use actix_web::{HttpRequest, HttpResponse, HttpResponseBuilder, Responder}; use actix_web::{HttpRequest, HttpResponse, Responder, body::BoxBody, http::{StatusCode, header::ContentType}};
#[cfg(feature = "actix")] #[cfg(feature = "actix")]
impl Responder for Element { impl Responder for Element {
type Body = String; type Body = BoxBody;
fn respond_to(self, req: &HttpRequest) -> HttpResponse<Self::Body> { fn respond_to(self, _: &HttpRequest) -> HttpResponse<Self::Body> {
HttpResponse::Ok() HttpResponse::build(StatusCode::OK)
.body(self.into()) .insert_header(ContentType::html())
.finish() .body(self.to_string())
} }
} }