fix #1391: passwords imported from CSV were not hidden

This commit is contained in:
antelle 2020-03-14 20:45:28 +01:00
parent 98c22a4323
commit 3d9965c4af
2 changed files with 2 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class ImportCsvView extends View {
if (mapping.type === 'ignore' || !mapping.field) {
continue;
}
if (mapping.field === 'password') {
if (mapping.field === 'Password') {
value = kdbxweb.ProtectedValue.fromString(value);
}
newEntry.setField(mapping.field, value);

View File

@ -10,6 +10,7 @@ Release notes
`-` fix #1208: webdav credentials corruption
`*` fix #1348: fixed password generation entropy
`-` fix #1385: fixed a file watcher error on network locations
`-` fix #1391: passwords imported from CSV were not hidden
##### v1.12.3 (2019-11-06)
`-` fix #1335: removed the menubar on Windows and Linux