Keruspe / GPaste

Clipboard management system
BSD 2-Clause "Simplified" License
773 stars 55 forks source link

Switching histories deletes [Password] type entries #350

Closed blackjackshellac closed 3 years ago

blackjackshellac commented 3 years ago

Is this by design?

$ gpaste-client switch-history test
$ gpaste-client add-password foo bar
$ gpaste-client add baz
$ gpaste-client --oneline
da876a44-3707-4590-a7fa-fbbce5586992: baz
a300e7fc-abc3-4460-987c-f6636069710c: [Password] foo
$ gpaste-client switch-history history
$ gpaste-client switch-history test
$ gpaste-client --oneline
# password foo is gone
da876a44-3707-4590-a7fa-fbbce5586992: baz
Keruspe commented 3 years ago

Yes, password entries are not persisted by design

blackjackshellac commented 3 years ago

K, thanks.