Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

Commit 48ef217

Browse files
committed
Fix missing format parameter
1 parent 07bce92 commit 48ef217

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripty_commands/src/cmds/config/auto_join.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ pub async fn config_auto_join(ctx: Context<'_>, auto_join: bool) -> Result<(), E
3131
if !target_channel_set {
3232
ctx.say(format_message!(
3333
resolved_language,
34-
"config-auto-join-needs-target-channel"
34+
"config-auto-join-needs-target-channel",
35+
contextPrefix: ctx.prefix()
3536
))
3637
.await?;
3738
return Ok(());

0 commit comments

Comments
 (0)