From 3f50a74756e07d72275105d428911aa06d643481 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 3 Oct 2025 17:36:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(list):=20fix=20label=20creat?= =?UTF-8?q?ion=20logic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - prevent panic when creating labels --- src/list_cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list_cli.rs b/src/list_cli.rs index 29f1942..0fc0f31 100644 --- a/src/list_cli.rs +++ b/src/list_cli.rs @@ -24,7 +24,7 @@ impl ListCli { if !self.labels.is_empty() { // add labels if any specified - let label_list = Labels::new(credential_file).await?; + let label_list = Labels::new(credential_file, false).await?; log::trace!("labels found and setup {label_list:#?}"); log::debug!("labels from command line: {:?}", self.labels);