delete cipher fix
This commit is contained in:
parent
69c230af94
commit
966e4fc69b
|
@ -430,7 +430,7 @@ function initCipherService() {
|
||||||
var self = this,
|
var self = this,
|
||||||
key = null;
|
key = null;
|
||||||
|
|
||||||
return self.userService.getUserIdPromise().then(function () {
|
return self.userService.getUserIdPromise().then(function (userId) {
|
||||||
key = 'ciphers_' + userId;
|
key = 'ciphers_' + userId;
|
||||||
return self.utilsService.getObjFromStorage(key);
|
return self.utilsService.getObjFromStorage(key);
|
||||||
}).then(function (ciphers) {
|
}).then(function (ciphers) {
|
||||||
|
|
Loading…
Reference in New Issue