about summary refs log tree commit diff
path: root/src/render.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/render.rs')
-rw-r--r--src/render.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render.rs b/src/render.rs
index 9a81d2c4cc17..bc1197bc15f1 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -89,7 +89,7 @@ impl Handler<IndexPage> for Renderer {
 pub struct ThreadPage {
     pub current_user: Option<String>,
     pub thread: Thread,
-    pub posts: Vec<Post>,
+    pub posts: Vec<SimplePost>,
 }
 message!(ThreadPage, Result<String>);