fix: Remove listverified from repl

- The implementation of listverified was removed in commit
  37dc1f5ca0, but it still shows up in
  the help and in the auto-complete grammar.
- Removed listverified where it still appears.

closes #6971
This commit is contained in:
cliffmccarthy
2025-06-30 17:52:34 -05:00
committed by iequidoo
parent ee8364913b
commit 2a5a0717aa
2 changed files with 1 additions and 3 deletions

View File

@@ -396,7 +396,6 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
react <msg-id> [<reaction>]\n\
===========================Contact commands==\n\
listcontacts [<query>]\n\
listverified [<query>]\n\
addcontact [<name>] <addr>\n\
contactinfo <contact-id>\n\
delcontact <contact-id>\n\

View File

@@ -228,9 +228,8 @@ const MESSAGE_COMMANDS: [&str; 9] = [
"download",
"react",
];
const CONTACT_COMMANDS: [&str; 9] = [
const CONTACT_COMMANDS: [&str; 8] = [
"listcontacts",
"listverified",
"addcontact",
"contactinfo",
"delcontact",