1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00
This commit is contained in:
Kyle Spearrin
2017-07-26 09:35:30 -04:00
parent d879518233
commit d4759d4056
3 changed files with 9 additions and 4 deletions

View File

@@ -24,7 +24,9 @@
// User is not using an enc key, let's make them one
$scope.tokenPromise = cipherService.updateKey(_masterPasswordHash, function () {
return requestToken();
}, processError);
}, function (err) {
toastr.error('Something went wrong.', 'Oh No!');
});
}
});
};