aboutsummaryrefslogtreecommitdiff
path: root/src/handler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handler.rs')
-rw-r--r--src/handler.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/handler.rs b/src/handler.rs
index 00cf0eb..ef8fc00 100644
--- a/src/handler.rs
+++ b/src/handler.rs
@@ -53,12 +53,15 @@ pub async fn event_handler(
.await?;
}
- let dm_chan = add_reaction
+ if let Ok(dm_chan) = add_reaction
.user_id
.unwrap()
.create_dm_channel(&ctx.http)
- .await?;
- dm_chan.say(ctx, format!("Toggled the role!")).await?;
+ .await {
+ dm_chan.say(ctx, format!("Toggled the role!")).await?;
+ } else {
+ println!("Could not DM user, but we did the role anyways");
+ }
add_reaction.delete(&ctx.http).await?;
}