aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs
index 000acc1..f36288a 100644
--- a/askama/src/lib.rs
+++ b/askama/src/lib.rs
@@ -617,11 +617,11 @@ pub mod actix_web {
impl<T: super::Template> TemplateIntoResponse for T {
fn into_response(&self) -> Result<HttpResponse, Error> {
- let mut buffer = BytesWriter::with_capacity(T::size_hint());
+ let mut buffer = BytesWriter::with_capacity(self.size_hint());
self.render_into(&mut buffer)
.map_err(|_| ErrorInternalServerError("Template parsing error"))?;
- let ctype = super::get_mime_type(T::extension().unwrap_or("txt")).to_string();
+ let ctype = super::get_mime_type(self.extension().unwrap_or("txt")).to_string();
Ok(HttpResponse::Ok()
.content_type(ctype.as_str())
.body(buffer.freeze()))