Source code for my personal quote bot project.

Fixed crontab syntax.

+1 -1
+1 -1
src/main.rs
··· 20 20 const EVENT_QUEUE: &str = "queue:event"; 21 21 22 22 // See https://cron.help for what these strings mean 23 - const POSTING_INTERVAL_CRON: &str = "00,30 * * * * * *"; 23 + const POSTING_INTERVAL_CRON: &str = "0 0,30 * * * *"; 24 24 const EVENT_UPDATE_INTERVAL: &str = "55 23 * * *"; 25 25 26 26 fn prepare_post<I: Into<String>>(text: I) -> post::RecordData {