Add SSH TOTP authentication support #350

Merged
ZacharyZcR merged 3 commits from feature-ssh-totp into dev-1.8.0 2025-10-08 01:01:48 +00:00
Showing only changes of commit 31265d63ea - Show all commits
+1 -1
View File
1
@@ -124,7 +124,7 @@ class SSHConnectionPool {
const responses = prompts.map(() => host.password || ""); const responses = prompts.map(() => host.password || "");
finish(responses); finish(responses);
} else { } else {
finish([]); finish(prompts.map(() => ""));
} }
}, },
); );
1