Skip to content

Commit

Permalink
Fix random bug (why did I even write this??)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoniosBarotsis committed May 1, 2024
1 parent 851c11f commit 3f12927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fn core_main() -> Result<(), String> {
let html = if blogs.is_empty() {
format!("{}\nNo new posts were found. You can set \"SKIP_IF_NO_NEW_POSTS\" to \"true\" to avoid sending this email.", html_title())
} else {
map_to_html(&blogs).replace('\"', "\\\"")
map_to_html(&blogs)
};

if cfg!(debug_assertions) {
Expand Down

0 comments on commit 3f12927

Please sign in to comment.