diff --git a/qml/YubiKey.qml b/qml/YubiKey.qml index 3e8de802..dc71cdc8 100644 --- a/qml/YubiKey.qml +++ b/qml/YubiKey.qml @@ -132,7 +132,7 @@ Python { // and validate with that key if found. var savedKey = getSavedKey(oathId) if (savedKey != null) { - validateFromKey(savedKey) + validateFromKey(savedKey, null) return } diff --git a/qml/main.qml b/qml/main.qml index caa046ca..09e2e1ff 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -521,7 +521,7 @@ ApplicationWindow { if (passwordPrompt.remember) { device.validate(passwordPrompt.password, rememberPassword) } else { - device.validate(passwordPrompt.password) + device.validate(passwordPrompt.password, null) } }