Skip to content

Commit 4a64533

Browse files
authored
Merge pull request #17 from f-code-club/fix/info-log-only
fix: add candidate role
2 parents b4f7aff + efcf5be commit 4a64533

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/command/verify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub async fn verify(ctx: Context<'_>, id: String) -> Result<()> {
5151
};
5252
let roles = guild.roles(ctx.http()).await?;
5353
let role_id = roles.iter().find_map(|(id, role)| {
54-
if role.name == config.moderator_role {
54+
if role.name == config.candidate_role {
5555
Some(id)
5656
} else {
5757
None

0 commit comments

Comments
 (0)