diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/render.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/render.rs b/src/render.rs index 95edb5749c68..91f4d3f3f9a2 100644 --- a/src/render.rs +++ b/src/render.rs @@ -58,6 +58,7 @@ struct IndexThread { sticky: bool, posted: FormattedDate, author_name: String, + post_author: String, } impl Handler<IndexPage> for Renderer { @@ -72,6 +73,7 @@ impl Handler<IndexPage> for Renderer { sticky: thread.sticky, posted: thread.posted.into(), author_name: thread.thread_author, + post_author: thread.post_author, }) .collect(); |