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

View File

@@ -124,7 +124,7 @@ class SSHConnectionPool {
const responses = prompts.map(() => host.password || "");
finish(responses);
} else {
finish([]);
finish(prompts.map(() => ""));
}
},
);