fix for DM commands

This commit is contained in:
jude 2020-10-26 20:56:54 +00:00
parent fa17978add
commit d7b0d18444
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -1175,7 +1175,7 @@ dependencies = [
[[package]]
name = "reminder_rs"
version = "1.1.1"
version = "1.1.2"
dependencies = [
"Inflector",
"async-trait",

View File

@ -1,6 +1,6 @@
[package]
name = "reminder_rs"
version = "1.1.1"
version = "1.1.2"
authors = ["jellywx <judesouthworth@pm.me>"]
edition = "2018"

View File

@ -99,7 +99,7 @@ UPDATE guilds SET name = ?, prefix = ? WHERE id = ?
pub struct ChannelData {
pub id: u32,
pub name: String,
pub name: Option<String>,
pub nudge: i16,
pub blacklisted: bool,
pub webhook_id: Option<u64>,