1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-06 05:28:51 +02:00

delete cipher fix

This commit is contained in:
Kyle Spearrin 2017-10-18 11:07:05 -04:00
parent 69c230af94
commit 966e4fc69b

View File

@ -430,7 +430,7 @@ function initCipherService() {
var self = this,
key = null;
return self.userService.getUserIdPromise().then(function () {
return self.userService.getUserIdPromise().then(function (userId) {
key = 'ciphers_' + userId;
return self.utilsService.getObjFromStorage(key);
}).then(function (ciphers) {