fix: cannot have an ID of 0 for any role, channel or server

This commit is contained in:
silver 2025-02-19 00:42:26 +00:00
parent 86f71f0fa4
commit 30287466cb
Signed by untrusted user: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -57,9 +57,9 @@ pub fn get_config() -> Config {
mail_pass: "".to_string(),
wolves_url: "".to_string(),
wolves_api: "".to_string(),
committee_server: GuildId::new(0),
committee_role: RoleId::new(0),
committee_category: ChannelId::new(0),
committee_server: GuildId::new(1),
committee_role: RoleId::new(1),
committee_category: ChannelId::new(1),
};
if let Ok(x) = env::var("DATABASE_HOME") {