This commit is contained in:
Kovid Goyal 2025-09-30 08:40:30 +05:30
parent fb3a36b9aa
commit 7dae6e3945
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -95,9 +95,10 @@ func RunSSHAskpass() {
}
if is_fingerprint_check {
response = strings.ToLower(response)
if response == "y" {
switch response {
case "y":
response = "yes"
} else if response == "n" {
case "n":
response = "no"
}
}