Workaround for segfault on Ubuntu 17.04

This commit is contained in:
Dag Heyman 2017-05-10 09:50:22 +02:00
parent 6f071a4813
commit cc86c37adf
No known key found for this signature in database
GPG Key ID: 06FC004369E7D338
2 changed files with 2 additions and 2 deletions

View File

@ -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
}

View File

@ -521,7 +521,7 @@ ApplicationWindow {
if (passwordPrompt.remember) {
device.validate(passwordPrompt.password, rememberPassword)
} else {
device.validate(passwordPrompt.password)
device.validate(passwordPrompt.password, null)
}
}