diff --git a/src/syndication.rs b/src/syndication.rs index 8f7a047..9d52560 100644 --- a/src/syndication.rs +++ b/src/syndication.rs @@ -95,7 +95,7 @@ pub fn channel_for_posts_page( if item.cws.is_empty() { body_text.push_str(&item.plain_body); } else { - body_text.push_str("Sensitive post, body text omitted. Content warnings:{}"); + body_text.push_str("Sensitive post, body text omitted. Content warnings:"); for cw in item.cws { body_text.push_str(&format!(" {},", cw)); }