changed guild name to be optional
This commit is contained in:
parent
a380c1f139
commit
75653a3e88
@ -14,7 +14,7 @@ use crate::consts::{DEFAULT_PREFIX, LOCAL_LANGUAGE, LOCAL_TIMEZONE, STRINGS_TABL
|
|||||||
|
|
||||||
pub struct GuildData {
|
pub struct GuildData {
|
||||||
pub id: u32,
|
pub id: u32,
|
||||||
pub name: String,
|
pub name: Option<String>,
|
||||||
pub prefix: String,
|
pub prefix: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,6 +57,8 @@ SELECT id, name, prefix FROM guilds WHERE guild = ?
|
|||||||
.fetch_one(pool)
|
.fetch_one(pool)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
|
g.name = guild.name;
|
||||||
|
|
||||||
Ok(g)
|
Ok(g)
|
||||||
} else {
|
} else {
|
||||||
sqlx::query!(
|
sqlx::query!(
|
||||||
|
Loading…
Reference in New Issue
Block a user