-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
I would like to avoid returning "arbitrary" first password when using in scripts.
diff --git a/src/main.rs b/src/main.rs
index 377fcc0..7595194 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -587,6 +587,8 @@ where
login_entries_name_matches.len()
);
login_entries = login_entries_name_matches;
+ } else {
+ return Err(anyhow!("No matching logins found"));
}
}
if login_entries.len() > 1 {
Not sure is it a bug or UC for something?
olfway, stdedos, skruppy and unai-ndz
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers