ssh kitten: Fix a bug where automatic login was not working
Fixes #9187
This commit is contained in:
parent
31b8ceb49a
commit
aec3c82c48
2 changed files with 3 additions and 1 deletions
|
|
@ -142,6 +142,8 @@ Detailed list of changes
|
|||
- Add a mappable action :ac:`copy_last_command_output` to copy the output of the last
|
||||
command to the clipboard (:pull:`9185`)
|
||||
|
||||
- ssh kitten: Fix a bug where automatic login was not working (:iss:`9187`)
|
||||
|
||||
0.44.0 [2025-11-03]
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ func resolve_secrets(c *Config, only_syntax bool) error {
|
|||
if r, err := resolve_secret("totp_secret", c.Totp_secret); err != nil {
|
||||
return err
|
||||
} else {
|
||||
c.Password = r
|
||||
c.Totp_secret = r
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue