fix(web(js)): handle SAML assertion expiration

feature/mail-identities
Francis Lachapelle 2020-06-09 13:24:28 -04:00
parent 27840093f5
commit 3ef94da9d6
1 changed files with 3 additions and 1 deletions

View File

@ -317,8 +317,10 @@
response.config.attempt = 1;
$http(response.config).then(function(response) {
deferred.resolve(response);
}, function(response) {
deferred.reject(response);
});
$timeout(iframe.remove, 500);
$timeout(iframe.remove, 2000);
}, 100); // Wait before replaying the request
}
});