nickserv: drop needless borrow on SAREGISTER alert text (clippy needless_borrows_for_generic_args)
Some checks failed
CI / check (push) Failing after 32s
Some checks failed
CI / check (push) Failing after 32s
This commit is contained in:
parent
ce8fdb9d5f
commit
bfcefdb83b
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ pub fn handle(me: &str, from: &Sender, args: &[&str], ctx: &mut ServiceCtx, db:
|
|||
return;
|
||||
}
|
||||
}
|
||||
ctx.alert("SAREGISTER", &format!("created account {account}"));
|
||||
ctx.alert("SAREGISTER", format!("created account {account}"));
|
||||
// The engine derives the password off-thread, commits the account as verified,
|
||||
// and NOTICEs the operator via the Admin reply (see engine::reg_reply).
|
||||
ctx.defer_register(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue