🐛 fix(list): fix label creation logic

- prevent panic when creating labels
This commit is contained in:
Jeremiah Russell
2025-10-03 17:36:41 +01:00
committed by Jeremiah Russell
parent bdf6f56f50
commit 3f50a74756

View File

@@ -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);