Compare commits

...

2 Commits

Author SHA1 Message Date
Leonora Tindall 7fce1dab55
This is 0.2.1 2022-10-31 23:33:54 -05:00
Leonora Tindall 05717b06a7
Don't add spurious {} to CW posts 2022-10-31 23:33:24 -05:00
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -293,7 +293,7 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
[[package]]
name = "corobel"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"atom_syndication",
"chrono",

View File

@ -1,6 +1,6 @@
[package]
name = "corobel"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -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));
}