Don't print message if YubiKey is waiting for touch

The user call-to-action will instead be implemented on the client side,
where it can be done in a more forgiving way (allowing the user some
time to react before prompting them that it is waiting on the plugin).
This commit is contained in:
Jack Grigg
2022-05-01 00:10:12 +00:00
parent 1ad79cb577
commit 345c155bb4
3 changed files with 11 additions and 23 deletions
+1 -1
View File
@@ -222,7 +222,7 @@ impl IdentityPluginV1 for IdentityPlugin {
}
for (stanza_index, line) in stanzas.iter().enumerate() {
match conn.unwrap_file_key(line, &mut callbacks)? {
match conn.unwrap_file_key(line) {
Ok(file_key) => {
// We've managed to decrypt this file!
file_keys.entry(file_index).or_insert(Ok(file_key));