timeout when trying u2f again
This commit is contained in:
parent
a7beed334f
commit
55a50fac83
|
@ -254,7 +254,10 @@ angular
|
|||
|
||||
if (data.errorCode) {
|
||||
console.log(data.errorCode);
|
||||
|
||||
$timeout(function () {
|
||||
initU2f(challenges);
|
||||
}, data.errorCode === 5 ? 0 : 1000);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -73,9 +73,14 @@ function initU2f(obj) {
|
|||
if (data.errorCode) {
|
||||
if (data.errorCode !== 5) {
|
||||
error('U2F Error: ' + data.errorCode);
|
||||
setTimeout(function () {
|
||||
initU2f(obj);
|
||||
}, 1000)
|
||||
}
|
||||
else {
|
||||
initU2f(obj);
|
||||
}
|
||||
|
||||
initU2f(obj);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue