From 2a5a0717aae5b0f85174802b7d430f034954259a Mon Sep 17 00:00:00 2001 From: cliffmccarthy <16453869+cliffmccarthy@users.noreply.github.com> Date: Mon, 30 Jun 2025 17:52:34 -0500 Subject: [PATCH] fix: Remove listverified from repl - The implementation of listverified was removed in commit 37dc1f5ca05bdae8cd911ad495faa2f0e1c6d52a, but it still shows up in the help and in the auto-complete grammar. - Removed listverified where it still appears. closes #6971 --- deltachat-repl/src/cmdline.rs | 1 - deltachat-repl/src/main.rs | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/deltachat-repl/src/cmdline.rs b/deltachat-repl/src/cmdline.rs index 2c9080050..b4bac7004 100644 --- a/deltachat-repl/src/cmdline.rs +++ b/deltachat-repl/src/cmdline.rs @@ -396,7 +396,6 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu react []\n\ ===========================Contact commands==\n\ listcontacts []\n\ - listverified []\n\ addcontact [] \n\ contactinfo \n\ delcontact \n\ diff --git a/deltachat-repl/src/main.rs b/deltachat-repl/src/main.rs index 40f313535..dabfb466a 100644 --- a/deltachat-repl/src/main.rs +++ b/deltachat-repl/src/main.rs @@ -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",