mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-28 12:45:45 +01:00
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);
|
||||
initU2f(challenges);
|
||||
|
||||
$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
Block a user