diff options
Diffstat (limited to 'src/discord.rs')
| -rw-r--r-- | src/discord.rs | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/discord.rs b/src/discord.rs index 438f0ed..40c30ac 100644 --- a/src/discord.rs +++ b/src/discord.rs @@ -175,13 +175,17 @@ async fn handle_reminders( client .lock() .unwrap() - .send_message(channel, - &format!("Meeting in one hour!\n{}", - agenda::read_agenda().to_string()), - "", - false) + .send_message( + channel, + &format!( + "Meeting in one hour!\n{}", + agenda::read_agenda().to_string() + ), + "", + false, + ) .unwrap(); - }, + } ReminderType::Void => {} } } |
