mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 04:14:52 +03:00
Workaround for segfault on Ubuntu 17.04
This commit is contained in:
parent
6f071a4813
commit
cc86c37adf
@ -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
|
||||
}
|
||||
|
||||
|
@ -521,7 +521,7 @@ ApplicationWindow {
|
||||
if (passwordPrompt.remember) {
|
||||
device.validate(passwordPrompt.password, rememberPassword)
|
||||
} else {
|
||||
device.validate(passwordPrompt.password)
|
||||
device.validate(passwordPrompt.password, null)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user