small addition

This commit is contained in:
glyph 2022-09-09 10:48:30 +01:00
parent 767f07ea24
commit 4bb354f239
2 changed files with 4 additions and 2 deletions

View File

@ -140,7 +140,8 @@ pub async fn post(db: &State<Database>, public_key: &str, msg_id: &str) -> Templ
selected_peer: &public_key,
selected_post: &msg_id,
posts: &posts,
post: &post
post: &post,
post_is_selected: &true
};
Template::render("base", context)

View File

@ -172,7 +172,8 @@ pub async fn post(db: &State<Database>, public_key: &str, msg_id: &str) -> Templ
selected_peer: &public_key,
selected_post: &msg_id,
posts: &posts,
post: &post
post: &post,
post_is_selected: &true
};
Template::render("base", context)