We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12c22c9 commit 34ca880Copy full SHA for 34ca880
src/bot/commands/setuproles.rs
@@ -482,7 +482,8 @@ async fn handle_save_roles(
482
// Show success message
483
let roles_list = created_roles
484
.iter()
485
- .map(|(_, role_id)| format!("* <@{}>", role_id))
+ // Manually format role mentions because it may not be cached yet
486
+ .map(|(_, role_id)| format!("* <@&{}>", role_id))
487
.collect::<Vec<_>>()
488
.join("\n");
489
0 commit comments