1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-31 08:20:37 +01:00

handle null condition

This commit is contained in:
Kyle Spearrin 2017-10-25 12:38:55 -04:00
parent f03c22cc07
commit df94d81d07

View File

@ -233,7 +233,9 @@ angular
_service.refreshAccessToken = function () {
var refreshToken = tokenService.getRefreshToken();
if (!refreshToken) {
return null;
return $q(function (resolve, reject) {
resolve(null);
});
}
return apiService.identity.token({