This commit is contained in:
2023-11-05 14:45:30 +01:00
parent 0e47f166a9
commit 92774a0e6f

View File

@@ -442,7 +442,7 @@ impl Format for Book {
let pages_count = match self.pages {
Some(1) | None => "".to_string(),
Some(v) => format!(" [ {v}с. ]"),
Some(v) => format!(" | {v}с."),
};
format!("📖 {title} | {lang}{year_part}{pages_count}\n")