Feature/vhs demo (#15)

* add vhs made demo gif

* add support for ANYDB_DB env var

* left one section

* fixed data type bug, added demo gifs, upgraded dependencies

---------

Co-authored-by: Thomas von Dein <tom@vondein.org>
This commit is contained in:
T.v.Dein
2025-02-02 19:42:12 +01:00
committed by GitHub
parent 359d134d6e
commit d794cc8608
17 changed files with 362 additions and 173 deletions

View File

@@ -216,12 +216,12 @@ func Edit(conf *cfg.Config) *cobra.Command {
}
password = pass
clear, err := app.Decrypt(pass, entry.Value)
clear, err := app.Decrypt(pass, []byte(entry.Value))
if err != nil {
return err
}
entry.Value = clear
entry.Value = string(clear)
entry.Encrypted = false
}