Skip to content

Commit

Permalink
fixed agent login regression - fixes #10248, fixes #10174
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Jan 22, 2025
1 parent d525374 commit c4a514f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabby-ssh/src/session/ssh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function sshAuthTypeForMethod (m: AuthMethod): string {
case 'saved-password': return 'password'
case 'keyboard-interactive': return 'keyboard-interactive'
case 'publickey': return 'publickey'
case 'agent': return 'agent'
case 'agent': return 'publickey'
}
}

Expand Down

0 comments on commit c4a514f

Please sign in to comment.