aboutsummaryrefslogtreecommitdiffstats
path: root/src/discord.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/discord.rs')
-rw-r--r--src/discord.rs16
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 => {}
}
}