|
|
@ -72,7 +72,9 @@ pub fn channel_for_posts_page( |
|
|
|
|
|
|
|
let mut body_text = String::new(); |
|
|
|
|
|
|
|
if item.share_tree.len() == 1 { |
|
|
|
if let Some(shared_post_id) = item.transparent_share_of_post_id { |
|
|
|
body_text.push_str(&format!("(share of post {} without any commentary)\n\n---\n\n", shared_post_id)); |
|
|
|
} else if item.share_tree.len() == 1 { |
|
|
|
body_text.push_str("(in reply to another post)\n\n---\n\n") |
|
|
|
} else if item.share_tree.len() > 1 { |
|
|
|
body_text.push_str(&format!( |
|
|
|