mirror of https://github.com/keeweb/keeweb
`-` fixed duplicated YubiKeys displayed in file settings
parent
bbf6e796f8
commit
d23d393c39
|
@ -105,7 +105,7 @@ class SettingsFileView extends View {
|
|||
for (const yk of this.yubiKeys) {
|
||||
for (const slot of yk.slots.filter((s) => s.valid)) {
|
||||
yubiKeys.push({
|
||||
value: `${yk.serial}:${slot}`,
|
||||
value: `${yk.serial}:${slot.number}`,
|
||||
fullName: yk.fullName,
|
||||
vid: yk.vid,
|
||||
pid: yk.pid,
|
||||
|
|
|
@ -4,7 +4,8 @@ Release notes
|
|||
`-` fix #1530: recursive creation of the portable directory
|
||||
`-` fix #1530: running from directories with hash symbols
|
||||
`+` possibility to debug startup with `--start-logging`
|
||||
`+` updated electron version
|
||||
`*` updated electron version
|
||||
`-` fixed duplicated YubiKeys displayed in file settings
|
||||
|
||||
##### v1.15.1 (2020-06-07)
|
||||
`-` fix #1528: OTP generation for stored values
|
||||
|
|
Loading…
Reference in New Issue