fix: choice box for generate new password was ignored
This commit is contained in:
parent
302ac2abe2
commit
48326bf95b
2 changed files with 6 additions and 1 deletions
|
@ -7,6 +7,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Fixed
|
||||
|
||||
- Choice box for generate new password was ignored
|
||||
|
||||
## v2.0.0 - 2020-12-23
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -291,8 +291,9 @@ func (c *Cli) UpdateEntry(entry Entry) bool {
|
|||
if c.ChoiceBox("Generate a new random password ?", false) {
|
||||
entry.Password = RandomString(c.Config.PasswordLength,
|
||||
c.Config.PasswordLetter, c.Config.PasswordDigit, c.Config.PasswordSpecial)
|
||||
}
|
||||
} else {
|
||||
entry.Password = c.InputBox("Password", "", true)
|
||||
}
|
||||
entry.OTP = c.InputBox("OTP Key", entry.OTP, false)
|
||||
entry.Comment = c.InputBox("Comment", entry.Comment, false)
|
||||
|
||||
|
|
Loading…
Reference in a new issue