aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-02-14 10:55:33 -0500
committerCara Salter <cara@devcara.com>2022-02-15 08:27:37 -0500
commit18abf2d8410bd31f16b406e6e5be18c9c14b653f (patch)
tree1449f8638139d201b40ce4fdbab1e09e3e3f642a /src
parent274f2cceabc1b0e2b35e0937473a6497a82d7c98 (diff)
downloadglitch-ng-18abf2d8410bd31f16b406e6e5be18c9c14b653f.tar.gz
glitch-ng-18abf2d8410bd31f16b406e6e5be18c9c14b653f.zip
Add CI0.6.0
Update dependencies Update docker image Fix CI Docker
Diffstat (limited to 'src')
-rw-r--r--src/handler.rs9
-rw-r--r--src/main.rs3
2 files changed, 9 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?;
}
diff --git a/src/main.rs b/src/main.rs
index 2968f20..8693381 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -123,6 +123,9 @@ async fn main() {
)
.await
.expect("Couldn't connect to postgresql");
+ sqlx::migrate!("./migrations")
+ .run(&pool)
+ .await.unwrap();
Ok(Data {
pg: Mutex::new(pool),
})